Dropbox .NET SDK
Show / Hide Table of Contents

Class PropertiesSearchResult

The properties search result object

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

Constructors

View Source

PropertiesSearchResult(IEnumerable<PropertiesSearchMatch>, string)

Initializes a new instance of the PropertiesSearchResult class.

Declaration
public PropertiesSearchResult(IEnumerable<PropertiesSearchMatch> matches, string cursor = null)
Parameters
Type Name Description
IEnumerable<PropertiesSearchMatch> matches

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

string cursor

Pass the cursor into PropertiesSearchContinueAsync(PropertiesSearchContinueArg) to continue to receive search results. Cursor will be null when there are no more results.

Properties

View Source

Cursor

Pass the cursor into PropertiesSearchContinueAsync(PropertiesSearchContinueArg) to continue to receive search results. Cursor will be null when there are no more results.

Declaration
public string Cursor { get; protected set; }
Property Value
Type Description
string
View Source

Matches

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

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