Dropbox .NET SDK
Show / Hide Table of Contents

Class SearchResult

The search result object

Inheritance
object
SearchResult
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 SearchResult

Constructors

View Source

SearchResult(IEnumerable<SearchMatch>, bool, ulong)

Initializes a new instance of the SearchResult class.

Declaration
public SearchResult(IEnumerable<SearchMatch> matches, bool more, ulong start)
Parameters
Type Name Description
IEnumerable<SearchMatch> matches

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

bool more

Used for paging. If true, indicates there is another page of results available that can be fetched by calling SearchAsync(SearchArg) again.

ulong start

Used for paging. Value to set the start argument to when calling SearchAsync(SearchArg) to fetch the next page of results.

Properties

View Source

Matches

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

Declaration
public IList<SearchMatch> Matches { get; protected set; }
Property Value
Type Description
IList<SearchMatch>
View Source

More

Used for paging. If true, indicates there is another page of results available that can be fetched by calling SearchAsync(SearchArg) again.

Declaration
public bool More { get; protected set; }
Property Value
Type Description
bool
View Source

Start

Used for paging. Value to set the start argument to when calling SearchAsync(SearchArg) to fetch the next page of results.

Declaration
public ulong Start { get; protected set; }
Property Value
Type Description
ulong
  • View Source
In this article
Back to top Dropbox .NET SDK