Dropbox .NET SDK
Show / Hide Table of Contents

Class DeleteBatchArg

The delete batch arg object

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

Constructors

View Source

DeleteBatchArg(IEnumerable<DeleteArg>)

Initializes a new instance of the DeleteBatchArg class.

Declaration
public DeleteBatchArg(IEnumerable<DeleteArg> entries)
Parameters
Type Name Description
IEnumerable<DeleteArg> entries

The entries

Properties

View Source

Entries

Gets the entries of the delete batch arg

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