Class SearchV2Result
The search v2 result object
Inherited Members
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class SearchV2Result
Constructors
View SourceSearchV2Result(IEnumerable<SearchMatchV2>, bool, string)
Initializes a new instance of the SearchV2Result class.
Declaration
public SearchV2Result(IEnumerable<SearchMatchV2> matches, bool hasMore, string cursor = null)
Parameters
| Type | Name | Description |
|---|---|---|
| IEnumerable<SearchMatchV2> | matches | A list (possibly empty) of matches for the query. |
| bool | hasMore | Used for paging. If true, indicates there is another page of results available that can be fetched by calling SearchContinueV2Async(SearchV2ContinueArg) with the cursor. |
| string | cursor | Pass the cursor into SearchContinueV2Async(SearchV2ContinueArg) to fetch the next page of results. |
Properties
View SourceCursor
Pass the cursor into SearchContinueV2Async(SearchV2ContinueArg) to fetch the next page of results.
Declaration
public string Cursor { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
HasMore
Used for paging. If true, indicates there is another page of results available that can be fetched by calling SearchContinueV2Async(SearchV2ContinueArg) with the cursor.
Declaration
public bool HasMore { get; protected set; }
Property Value
| Type | Description |
|---|---|
| bool |
Matches
A list (possibly empty) of matches for the query.
Declaration
public IList<SearchMatchV2> Matches { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<SearchMatchV2> |