Dropbox .NET SDK

Class LockStatus

File lock status

Inheritance
object
LockStatus
LockStatus.Locked
LockStatus.Other
LockStatus.Unlocked
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.TeamLog
Assembly: Dropbox.Api.dll
Syntax
public class LockStatus

Constructors

View Source

LockStatus()

Initializes a new instance of the LockStatus class.

Declaration
public LockStatus()

Properties

View Source

AsLocked

Gets this instance as a Locked, or null.

Declaration
public LockStatus.Locked AsLocked { get; }
Property Value
Type Description
LockStatus.Locked
View Source

AsOther

Gets this instance as a Other, or null.

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

AsUnlocked

Gets this instance as a Unlocked, or null.

Declaration
public LockStatus.Unlocked AsUnlocked { get; }
Property Value
Type Description
LockStatus.Unlocked
View Source

IsLocked

Gets a value indicating whether this instance is Locked

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

IsUnlocked

Gets a value indicating whether this instance is Unlocked

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