Show / Hide Table of Contents

Class TimeRange

Time range.

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

Constructors

| Improve this Doc View Source

TimeRange(Nullable<DateTime>, Nullable<DateTime>)

Initializes a new instance of the TimeRange class.

Declaration
public TimeRange(DateTime? startTime = null, DateTime? endTime = null)
Parameters
Type Name Description
System.Nullable<System.DateTime> startTime

Optional starting time (inclusive).

System.Nullable<System.DateTime> endTime

Optional ending time (exclusive).

Properties

| Improve this Doc View Source

EndTime

Optional ending time (exclusive).

Declaration
public DateTime? EndTime { get; protected set; }
Property Value
Type Description
System.Nullable<System.DateTime>
| Improve this Doc View Source

StartTime

Optional starting time (inclusive).

Declaration
public DateTime? StartTime { get; protected set; }
Property Value
Type Description
System.Nullable<System.DateTime>
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • TimeRange(Nullable<DateTime>, Nullable<DateTime>)
  • Properties
    • EndTime
    • StartTime
Back to top Generated by DocFX