Class PropertiesSearchResult
The properties search result object
Inherited Members
Namespace: Dropbox.Api.FileProperties
Assembly: Dropbox.Api.dll
Syntax
public class PropertiesSearchResult
Constructors
View SourcePropertiesSearchResult(IEnumerable<PropertiesSearchMatch>, string)
Initializes a new instance of the PropertiesSearchResult class.
Declaration
public PropertiesSearchResult(IEnumerable<PropertiesSearchMatch> matches, string cursor = null)
Parameters
| Type | Name | Description |
|---|---|---|
| IEnumerable<PropertiesSearchMatch> | matches | A list (possibly empty) of matches for the query. |
| string | cursor | Pass the cursor into PropertiesSearchContinueAsync(PropertiesSearchContinueArg) to continue to receive search results. Cursor will be null when there are no more results. |
Properties
View SourceCursor
Pass the cursor into PropertiesSearchContinueAsync(PropertiesSearchContinueArg) to continue to receive search results. Cursor will be null when there are no more results.
Declaration
public string Cursor { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
Matches
A list (possibly empty) of matches for the query.
Declaration
public IList<PropertiesSearchMatch> Matches { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<PropertiesSearchMatch> |