Class SearchResult
The search result object
Inherited Members
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class SearchResult
Constructors
View SourceSearchResult(IEnumerable<SearchMatch>, bool, ulong)
Initializes a new instance of the SearchResult class.
Declaration
public SearchResult(IEnumerable<SearchMatch> matches, bool more, ulong start)
Parameters
| Type | Name | Description |
|---|---|---|
| IEnumerable<SearchMatch> | matches | A list (possibly empty) of matches for the query. |
| bool | more | Used for paging. If true, indicates there is another page of results available that can be fetched by calling SearchAsync(SearchArg) again. |
| ulong | start | Used for paging. Value to set the start argument to when calling SearchAsync(SearchArg) to fetch the next page of results. |
Properties
View SourceMatches
A list (possibly empty) of matches for the query.
Declaration
public IList<SearchMatch> Matches { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<SearchMatch> |
More
Used for paging. If true, indicates there is another page of results available that can be fetched by calling SearchAsync(SearchArg) again.
Declaration
public bool More { get; protected set; }
Property Value
| Type | Description |
|---|---|
| bool |
Start
Used for paging. Value to set the start argument to when calling SearchAsync(SearchArg) to fetch the next page of results.
Declaration
public ulong Start { get; protected set; }
Property Value
| Type | Description |
|---|---|
| ulong |