Dropbox .NET SDK
Show / Hide Table of Contents

Class FileLockMetadata

The file lock metadata object

Inheritance
object
FileLockMetadata
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 FileLockMetadata

Constructors

View Source

FileLockMetadata(bool?, string, string, DateTime?)

Initializes a new instance of the FileLockMetadata class.

Declaration
public FileLockMetadata(bool? isLockholder = null, string lockholderName = null, string lockholderAccountId = null, DateTime? created = null)
Parameters
Type Name Description
bool? isLockholder

True if caller holds the file lock.

string lockholderName

The display name of the lock holder.

string lockholderAccountId

The account ID of the lock holder if known.

DateTime? created

The timestamp of the lock was created.

Properties

View Source

Created

The timestamp of the lock was created.

Declaration
public DateTime? Created { get; protected set; }
Property Value
Type Description
DateTime?
View Source

IsLockholder

True if caller holds the file lock.

Declaration
public bool? IsLockholder { get; protected set; }
Property Value
Type Description
bool?
View Source

LockholderAccountId

The account ID of the lock holder if known.

Declaration
public string LockholderAccountId { get; protected set; }
Property Value
Type Description
string
View Source

LockholderName

The display name of the lock holder.

Declaration
public string LockholderName { get; protected set; }
Property Value
Type Description
string
  • View Source
In this article
Back to top Dropbox .NET SDK