Show / Hide Table of Contents

Class PropertiesSearchResult

The properties search result object

Inheritance
System.Object
PropertiesSearchResult
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.FileProperties
Assembly: Dropbox.Api.dll
Syntax
public class PropertiesSearchResult

Constructors

| Improve this Doc 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
System.Collections.Generic.IEnumerable<PropertiesSearchMatch> matches

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

System.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

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

Matches

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

Declaration
public IList<PropertiesSearchMatch> Matches { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<PropertiesSearchMatch>
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX