Show / Hide Table of Contents

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 Source

SearchV2Result(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 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
System.String
| Improve this Doc 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
System.Boolean
| Improve this Doc View Source

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>
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • SearchV2Result(IEnumerable<SearchMatchV2>, Boolean, String)
  • Properties
    • Cursor
    • HasMore
    • Matches
Back to top Generated by DocFX