Show / Hide Table of Contents

Class SearchResult

The search result object

Inheritance
System.Object
SearchResult
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 SearchResult

Constructors

| Improve this Doc View Source

SearchResult(IEnumerable<SearchMatch>, Boolean, UInt64)

Initializes a new instance of the SearchResult class.

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

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

System.Boolean more

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

System.UInt64 start

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

Properties

| Improve this Doc View Source

Matches

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

Declaration
public IList<SearchMatch> Matches { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<SearchMatch>
| Improve this Doc 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
System.Boolean
| Improve this Doc 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
System.UInt64
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • SearchResult(IEnumerable<SearchMatch>, Boolean, UInt64)
  • Properties
    • Matches
    • More
    • Start
Back to top Generated by DocFX