Dropbox .NET SDK
Show / Hide Table of Contents

Class LockFileBatchResult

The lock file batch result object

Inheritance
object
FileOpsResult
LockFileBatchResult
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 LockFileBatchResult : FileOpsResult

Constructors

View Source

LockFileBatchResult(IEnumerable<LockFileResultEntry>)

Initializes a new instance of the LockFileBatchResult class.

Declaration
public LockFileBatchResult(IEnumerable<LockFileResultEntry> entries)
Parameters
Type Name Description
IEnumerable<LockFileResultEntry> entries

Each Entry in the 'entries' will have '.tag' with the operation status (e.g. success), the metadata for the file and the lock state after the operation.

Properties

View Source

Entries

Each Entry in the 'entries' will have '.tag' with the operation status (e.g. success), the metadata for the file and the lock state after the operation.

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