Class FileLockMetadata
The file lock metadata object
Inheritance
System.Object
FileLockMetadata
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class FileLockMetadata
Constructors
| Improve this Doc View SourceFileLockMetadata(Nullable<Boolean>, String, String, Nullable<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 |
---|---|---|
System.Nullable<System.Boolean> | isLockholder | True if caller holds the file lock. |
System.String | lockholderName | The display name of the lock holder. |
System.String | lockholderAccountId | The account ID of the lock holder if known. |
System.Nullable<System.DateTime> | created | The timestamp of the lock was created. |
Properties
| Improve this Doc View SourceCreated
The timestamp of the lock was created.
Declaration
public DateTime? Created { get; protected set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |
IsLockholder
True if caller holds the file lock.
Declaration
public bool? IsLockholder { get; protected set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
LockholderAccountId
The account ID of the lock holder if known.
Declaration
public string LockholderAccountId { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
LockholderName
The display name of the lock holder.
Declaration
public string LockholderName { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |