Dropbox .NET SDK
Show / Hide Table of Contents

Class SearchV2Arg

The search v2 arg object

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

Constructors

View Source

SearchV2Arg(string, SearchOptions, SearchMatchFieldOptions, bool?)

Initializes a new instance of the SearchV2Arg class.

Declaration
public SearchV2Arg(string query, SearchOptions options = null, SearchMatchFieldOptions matchFieldOptions = null, bool? includeHighlights = null)
Parameters
Type Name Description
string query

The string to search for. May match across multiple fields based on the request arguments.

SearchOptions options

Options for more targeted search results.

SearchMatchFieldOptions matchFieldOptions

Options for search results match fields.

bool? includeHighlights

Field is deprecated. Deprecated and moved this option to SearchMatchFieldOptions.

Properties

View Source

IncludeHighlights

Field is deprecated. Deprecated and moved this option to SearchMatchFieldOptions.

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

MatchFieldOptions

Options for search results match fields.

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

Options

Options for more targeted search results.

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

Query

The string to search for. May match across multiple fields based on the request arguments.

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