Dropbox .NET SDK
Show / Hide Table of Contents

Class FileRequestDeadline

The file request deadline object

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

Constructors

View Source

FileRequestDeadline(DateTime, GracePeriod)

Initializes a new instance of the FileRequestDeadline class.

Declaration
public FileRequestDeadline(DateTime deadline, GracePeriod allowLateUploads = null)
Parameters
Type Name Description
DateTime deadline

The deadline for this file request.

GracePeriod allowLateUploads

If set, allow uploads after the deadline has passed. These uploads will be marked overdue.

Properties

View Source

AllowLateUploads

If set, allow uploads after the deadline has passed. These uploads will be marked overdue.

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

Deadline

The deadline for this file request.

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