Show / Hide Table of Contents

Class SearchV2Arg

The search v2 arg object

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

Constructors

| Improve this Doc View Source

SearchV2Arg(String, SearchOptions, SearchMatchFieldOptions, Nullable<Boolean>)

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

System.Nullable<System.Boolean> includeHighlights

Deprecated and moved this option to SearchMatchFieldOptions.

Properties

| Improve this Doc View Source

IncludeHighlights

Deprecated and moved this option to SearchMatchFieldOptions.

Declaration
public bool? IncludeHighlights { get; protected set; }
Property Value
Type Description
System.Nullable<System.Boolean>
| Improve this Doc View Source

MatchFieldOptions

Options for search results match fields.

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

Options

Options for more targeted search results.

Declaration
public SearchOptions Options { get; protected set; }
Property Value
Type Description
SearchOptions
| Improve this Doc 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
System.String
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • SearchV2Arg(String, SearchOptions, SearchMatchFieldOptions, Nullable<Boolean>)
  • Properties
    • IncludeHighlights
    • MatchFieldOptions
    • Options
    • Query
Back to top Generated by DocFX