Dropbox .NET SDK
Show / Hide Table of Contents

Class FileStatus

The file status object

Inheritance
object
FileStatus
FileStatus.Active
FileStatus.Deleted
FileStatus.Other
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 FileStatus

Constructors

View Source

FileStatus()

Initializes a new instance of the FileStatus class.

Declaration
public FileStatus()

Properties

View Source

AsActive

Gets this instance as a Active, or null.

Declaration
public FileStatus.Active AsActive { get; }
Property Value
Type Description
FileStatus.Active
View Source

AsDeleted

Gets this instance as a Deleted, or null.

Declaration
public FileStatus.Deleted AsDeleted { get; }
Property Value
Type Description
FileStatus.Deleted
View Source

AsOther

Gets this instance as a Other, or null.

Declaration
public FileStatus.Other AsOther { get; }
Property Value
Type Description
FileStatus.Other
View Source

IsActive

Gets a value indicating whether this instance is Active

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

IsDeleted

Gets a value indicating whether this instance is Deleted

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

IsOther

Gets a value indicating whether this instance is Other

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