Show / Hide Table of Contents

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 Source

FileLockMetadata(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 Source

Created

The timestamp of the lock was created.

Declaration
public DateTime? Created { get; protected set; }
Property Value
Type Description
System.Nullable<System.DateTime>
| Improve this Doc View Source

IsLockholder

True if caller holds the file lock.

Declaration
public bool? IsLockholder { get; protected set; }
Property Value
Type Description
System.Nullable<System.Boolean>
| Improve this Doc View Source

LockholderAccountId

The account ID of the lock holder if known.

Declaration
public string LockholderAccountId { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

LockholderName

The display name of the lock holder.

Declaration
public string LockholderName { get; protected set; }
Property Value
Type Description
System.String
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • FileLockMetadata(Nullable<Boolean>, String, String, Nullable<DateTime>)
  • Properties
    • Created
    • IsLockholder
    • LockholderAccountId
    • LockholderName
Back to top Generated by DocFX