Dropbox .NET SDK
Show / Hide Table of Contents

Class TimeRange

Time range.

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

Constructors

View Source

TimeRange(DateTime?, DateTime?)

Initializes a new instance of the TimeRange class.

Declaration
public TimeRange(DateTime? startTime = null, DateTime? endTime = null)
Parameters
Type Name Description
DateTime? startTime

Optional starting time (inclusive).

DateTime? endTime

Optional ending time (exclusive).

Properties

View Source

EndTime

Optional ending time (exclusive).

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

StartTime

Optional starting time (inclusive).

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