Dropbox .NET SDK
Show / Hide Table of Contents

Class SingleUserLock

The single user lock object

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

Constructors

View Source

SingleUserLock(DateTime, string, string)

Initializes a new instance of the SingleUserLock class.

Declaration
public SingleUserLock(DateTime created, string lockHolderAccountId, string lockHolderTeamId = null)
Parameters
Type Name Description
DateTime created

The time the lock was created.

string lockHolderAccountId

The account ID of the lock holder if known.

string lockHolderTeamId

The id of the team of the account holder if it exists.

Properties

View Source

Created

The time the lock was created.

Declaration
public DateTime Created { get; protected set; }
Property Value
Type Description
DateTime
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

LockHolderTeamId

The id of the team of the account holder if it exists.

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