Class SearchV2Result
The search v2 result object
Inheritance
System.Object
SearchV2Result
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.Files
Assembly: Dropbox.Api.dll
Syntax
public class SearchV2Result
Constructors
| Improve this Doc View SourceSearchV2Result(IEnumerable<SearchMatchV2>, Boolean, String)
Initializes a new instance of the SearchV2Result class.
Declaration
public SearchV2Result(IEnumerable<SearchMatchV2> matches, bool hasMore, string cursor = null)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<SearchMatchV2> | matches | A list (possibly empty) of matches for the query. |
System.Boolean | 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. |
System.String | cursor | Pass the cursor into SearchContinueV2Async(SearchV2ContinueArg) to fetch the next page of results. |
Properties
| Improve this Doc 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 |
---|---|
System.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 |
---|---|
System.Boolean |
Matches
A list (possibly empty) of matches for the query.
Declaration
public IList<SearchMatchV2> Matches { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<SearchMatchV2> |