Dropbox .NET SDK
Show / Hide Table of Contents

Class UnlockFileBatchArg

The unlock file batch arg object

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

Constructors

View Source

UnlockFileBatchArg(IEnumerable<UnlockFileArg>)

Initializes a new instance of the UnlockFileBatchArg class.

Declaration
public UnlockFileBatchArg(IEnumerable<UnlockFileArg> entries)
Parameters
Type Name Description
IEnumerable<UnlockFileArg> entries

List of 'entries'. Each 'entry' contains a path of the file which will be unlocked. 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 unlocked. Duplicate path arguments in the batch are considered only once.

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