Class PropertiesSearchResult
The properties search result object
Inheritance
System.Object
PropertiesSearchResult
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dropbox.Api.FileProperties
Assembly: Dropbox.Api.dll
Syntax
public class PropertiesSearchResult
Constructors
| Improve this Doc 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 |
---|---|---|
System.Collections.Generic.IEnumerable<PropertiesSearchMatch> | matches | A list (possibly empty) of matches for the query. |
System.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
| Improve this Doc 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 |
---|---|
System.String |
Matches
A list (possibly empty) of matches for the query.
Declaration
public IList<PropertiesSearchMatch> Matches { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<PropertiesSearchMatch> |