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 SourceTimeRange(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 SourceEndTime
Optional ending time (exclusive).
Declaration
public DateTime? EndTime { get; protected set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |
StartTime
Optional starting time (inclusive).
Declaration
public DateTime? StartTime { get; protected set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |