Dropbox .NET SDK
Show / Hide Table of Contents

Class DeleteFileRequestArgs

Arguments for DeleteAsync(DeleteFileRequestArgs).

Inheritance
object
DeleteFileRequestArgs
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.FileRequests
Assembly: Dropbox.Api.dll
Syntax
public class DeleteFileRequestArgs

Constructors

View Source

DeleteFileRequestArgs(IEnumerable<string>)

Initializes a new instance of the DeleteFileRequestArgs class.

Declaration
public DeleteFileRequestArgs(IEnumerable<string> ids)
Parameters
Type Name Description
IEnumerable<string> ids

List IDs of the file requests to delete.

Properties

View Source

Ids

List IDs of the file requests to delete.

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