Dropbox .NET SDK
Show / Hide Table of Contents

Class PropertiesSearchQuery

The properties search query object

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

Constructors

View Source

PropertiesSearchQuery(string, PropertiesSearchMode, LogicalOperator)

Initializes a new instance of the PropertiesSearchQuery class.

Declaration
public PropertiesSearchQuery(string query, PropertiesSearchMode mode, LogicalOperator logicalOperator = null)
Parameters
Type Name Description
string query

The property field value for which to search across templates.

PropertiesSearchMode mode

The mode with which to perform the search.

LogicalOperator logicalOperator

The logical operator with which to append the query.

Properties

View Source

LogicalOperator

The logical operator with which to append the query.

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

Mode

The mode with which to perform the search.

Declaration
public PropertiesSearchMode Mode { get; protected set; }
Property Value
Type Description
PropertiesSearchMode
View Source

Query

The property field value for which to search across templates.

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