Show / Hide Table of Contents

Class CreateFileRequestArgs

Arguments for CreateAsync(CreateFileRequestArgs).

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

Constructors

| Improve this Doc View Source

CreateFileRequestArgs(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 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
| Improve this Doc View Source

Description

A description of the file request.

Declaration
public string Description { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc 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
System.String
| Improve this Doc 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
System.Boolean
| Improve this Doc View Source

Title

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

Declaration
public string Title { get; protected set; }
Property Value
Type Description
System.String
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • CreateFileRequestArgs(String, String, FileRequestDeadline, Boolean, String)
  • Properties
    • Deadline
    • Description
    • Destination
    • Open
    • Title
Back to top Generated by DocFX