Dropbox .NET SDK
Show / Hide Table of Contents

Class FileLockContent

The file lock content object

Inheritance
object
FileLockContent
FileLockContent.Other
FileLockContent.SingleUser
FileLockContent.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.Files
Assembly: Dropbox.Api.dll
Syntax
public class FileLockContent

Constructors

View Source

FileLockContent()

Initializes a new instance of the FileLockContent class.

Declaration
public FileLockContent()

Properties

View Source

AsOther

Gets this instance as a Other, or null.

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

AsSingleUser

Gets this instance as a SingleUser, or null.

Declaration
public FileLockContent.SingleUser AsSingleUser { get; }
Property Value
Type Description
FileLockContent.SingleUser
View Source

AsUnlocked

Gets this instance as a Unlocked, or null.

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

IsOther

Gets a value indicating whether this instance is Other

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

IsSingleUser

Gets a value indicating whether this instance is SingleUser

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