Dropbox .NET SDK
Show / Hide Table of Contents

Class DateRange

Input arguments that can be provided for most reports.

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

Constructors

View Source

DateRange(DateTime?, DateTime?)

Initializes a new instance of the DateRange class.

Declaration
public DateRange(DateTime? startDate = null, DateTime? endDate = null)
Parameters
Type Name Description
DateTime? startDate

Optional starting date (inclusive). If start_date is None or too long ago, this field will be set to 6 months ago.

DateTime? endDate

Optional ending date (exclusive).

Properties

View Source

EndDate

Optional ending date (exclusive).

Declaration
public DateTime? EndDate { get; protected set; }
Property Value
Type Description
DateTime?
View Source

StartDate

Optional starting date (inclusive). If start_date is None or too long ago, this field will be set to 6 months ago.

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