Dropbox .NET SDK
Show / Hide Table of Contents

Class SearchV2Result

The search v2 result object

Inheritance
object
SearchV2Result
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class SearchV2Result

Constructors

View Source

SearchV2Result(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 Source

Cursor

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
View Source

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
View Source

Matches

A list (possibly empty) of matches for the query.

Declaration
public IList<SearchMatchV2> Matches { get; protected set; }
Property Value
Type Description
IList<SearchMatchV2>
  • View Source
In this article
Back to top Dropbox .NET SDK