Class CreateFileRequestArgs
Arguments for CreateAsync(CreateFileRequestArgs).
Inheritance
Inherited Members
Namespace: Dropbox.Api.FileRequests
Assembly: Dropbox.Api.dll
Syntax
public class CreateFileRequestArgs
Constructors
| Improve this Doc View SourceCreateFileRequestArgs(String, String, FileRequestDeadline, Boolean, 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)
Parameters
Type | Name | Description |
---|---|---|
System.String | title | The title of the file request. Must not be empty. |
System.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. |
System.Boolean | 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. |
System.String | description | A description of the file request. |
Properties
| Improve this Doc View SourceDeadline
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 |
Description
A description of the file request.
Declaration
public string Description { get; protected set; }
Property Value
Type | Description |
---|---|
System.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.
Declaration
public string Destination { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
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 |
---|---|
System.Boolean |
Title
The title of the file request. Must not be empty.
Declaration
public string Title { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |