Dropbox .NET SDK
Show / Hide Table of Contents

Class SearchMatchType

Indicates what type of match was found for a given item.

Inheritance
object
SearchMatchType
SearchMatchType.Both
SearchMatchType.Content
SearchMatchType.Filename
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 SearchMatchType

Constructors

View Source

SearchMatchType()

Initializes a new instance of the SearchMatchType class.

Declaration
public SearchMatchType()

Properties

View Source

AsBoth

Gets this instance as a Both, or null.

Declaration
public SearchMatchType.Both AsBoth { get; }
Property Value
Type Description
SearchMatchType.Both
View Source

AsContent

Gets this instance as a Content, or null.

Declaration
public SearchMatchType.Content AsContent { get; }
Property Value
Type Description
SearchMatchType.Content
View Source

AsFilename

Gets this instance as a Filename, or null.

Declaration
public SearchMatchType.Filename AsFilename { get; }
Property Value
Type Description
SearchMatchType.Filename
View Source

IsBoth

Gets a value indicating whether this instance is Both

Declaration
public bool IsBoth { get; }
Property Value
Type Description
bool
View Source

IsContent

Gets a value indicating whether this instance is Content

Declaration
public bool IsContent { get; }
Property Value
Type Description
bool
View Source

IsFilename

Gets a value indicating whether this instance is Filename

Declaration
public bool IsFilename { get; }
Property Value
Type Description
bool
  • View Source
In this article
Back to top Dropbox .NET SDK