Show / Hide Table of Contents

Class DateRange

Input arguments that can be provided for most reports.

Inheritance
System.Object
DateRange
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.Team
Assembly: Dropbox.Api.dll
Syntax
public class DateRange

Constructors

| Improve this Doc View Source

DateRange(Nullable<DateTime>, Nullable<DateTime>)

Initializes a new instance of the DateRange class.

Declaration
public DateRange(DateTime? startDate = null, DateTime? endDate = null)
Parameters
Type Name Description
System.Nullable<System.DateTime> startDate

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

System.Nullable<System.DateTime> endDate

Optional ending date (exclusive).

Properties

| Improve this Doc View Source

EndDate

Optional ending date (exclusive).

Declaration
public DateTime? EndDate { get; protected set; }
Property Value
Type Description
System.Nullable<System.DateTime>
| Improve this Doc 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
System.Nullable<System.DateTime>
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • DateRange(Nullable<DateTime>, Nullable<DateTime>)
  • Properties
    • EndDate
    • StartDate
Back to top Generated by DocFX