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 SourceSearchV2Arg(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 SourceIncludeHighlights
Deprecated and moved this option to SearchMatchFieldOptions.
Declaration
public bool? IncludeHighlights { get; protected set; }
  Property Value
| Type | Description | 
|---|---|
| System.Nullable<System.Boolean> | 
MatchFieldOptions
Options for search results match fields.
Declaration
public SearchMatchFieldOptions MatchFieldOptions { get; protected set; }
  Property Value
| Type | Description | 
|---|---|
| SearchMatchFieldOptions | 
Options
Options for more targeted search results.
Declaration
public SearchOptions Options { get; protected set; }
  Property Value
| Type | Description | 
|---|---|
| SearchOptions | 
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 |