Dropbox .NET SDK
Show / Hide Table of Contents

Class CreateFileRequestArgs

Arguments for CreateAsync(CreateFileRequestArgs).

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

Constructors

View Source

CreateFileRequestArgs(string, string, FileRequestDeadline, bool, string, string)

Initializes a new instance of the CreateFileRequestArgs class.

Declaration
public CreateFileRequestArgs(string title, string destination, FileRequestDeadline deadline = null, bool open = true, string description = null, string videoProjectId = null)
Parameters
Type Name Description
string title

The title of the file request. Must not be empty.

string destination

The path of the folder in the Dropbox where uploaded files will be sent. For apps with the app folder permission, this will be relative to the app folder.

FileRequestDeadline deadline

The deadline for the file request. Deadlines can only be set by Professional and Business accounts.

bool open

Whether or not the file request should be open. If the file request is closed, it will not accept any file submissions, but it can be opened later.

string description

A description of the file request.

string videoProjectId

If this request was created from video project, its id.

Properties

View Source

Deadline

The deadline for the file request. Deadlines can only be set by Professional and Business accounts.

Declaration
public FileRequestDeadline Deadline { get; protected set; }
Property Value
Type Description
FileRequestDeadline
View Source

Description

A description of the file request.

Declaration
public string Description { get; protected set; }
Property Value
Type Description
string
View Source

Destination

The path of the folder in the Dropbox where uploaded files will be sent. For apps with the app folder permission, this will be relative to the app folder.

Declaration
public string Destination { get; protected set; }
Property Value
Type Description
string
View Source

Open

Whether or not the file request should be open. If the file request is closed, it will not accept any file submissions, but it can be opened later.

Declaration
public bool Open { get; protected set; }
Property Value
Type Description
bool
View Source

Title

The title of the file request. Must not be empty.

Declaration
public string Title { get; protected set; }
Property Value
Type Description
string
View Source

VideoProjectId

If this request was created from video project, its id.

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