Dropbox .NET SDK
Show / Hide Table of Contents

Class SearchMode

The search mode object

Inheritance
object
SearchMode
SearchMode.DeletedFilename
SearchMode.Filename
SearchMode.FilenameAndContent
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 SearchMode

Constructors

View Source

SearchMode()

Initializes a new instance of the SearchMode class.

Declaration
public SearchMode()

Properties

View Source

AsDeletedFilename

Gets this instance as a DeletedFilename, or null.

Declaration
public SearchMode.DeletedFilename AsDeletedFilename { get; }
Property Value
Type Description
SearchMode.DeletedFilename
View Source

AsFilename

Gets this instance as a Filename, or null.

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

AsFilenameAndContent

Gets this instance as a FilenameAndContent, or null.

Declaration
public SearchMode.FilenameAndContent AsFilenameAndContent { get; }
Property Value
Type Description
SearchMode.FilenameAndContent
View Source

IsDeletedFilename

Gets a value indicating whether this instance is DeletedFilename

Declaration
public bool IsDeletedFilename { 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

IsFilenameAndContent

Gets a value indicating whether this instance is FilenameAndContent

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