Dropbox .NET SDK
Show / Hide Table of Contents

Class DeleteBatchResult

The delete batch result object

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

Constructors

View Source

DeleteBatchResult(IEnumerable<DeleteBatchResultEntry>)

Initializes a new instance of the DeleteBatchResult class.

Declaration
public DeleteBatchResult(IEnumerable<DeleteBatchResultEntry> entries)
Parameters
Type Name Description
IEnumerable<DeleteBatchResultEntry> entries

Each entry in Entries will appear at the same position inside Entries.

Properties

View Source

Entries

Each entry in Entries will appear at the same position inside Entries.

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