Dropbox .NET SDK
Show / Hide Table of Contents

Class LockFileBatchArg

The lock file batch arg object

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

Constructors

View Source

LockFileBatchArg(IEnumerable<LockFileArg>)

Initializes a new instance of the LockFileBatchArg class.

Declaration
public LockFileBatchArg(IEnumerable<LockFileArg> entries)
Parameters
Type Name Description
IEnumerable<LockFileArg> entries

List of 'entries'. Each 'entry' contains a path of the file which will be locked or queried. Duplicate path arguments in the batch are considered only once.

Properties

View Source

Entries

List of 'entries'. Each 'entry' contains a path of the file which will be locked or queried. Duplicate path arguments in the batch are considered only once.

Declaration
public IList<LockFileArg> Entries { get; protected set; }
Property Value
Type Description
IList<LockFileArg>
  • View Source
In this article
Back to top Dropbox .NET SDK