Share via


TimeOfDay Constructors

Definition

Overloads

TimeOfDay(Int64)

Constructor of TimeOfDay

TimeOfDay(Int32, Int32, Int32, Int32)

Constructor of TimeOfDay

TimeOfDay(Int64)

Constructor of TimeOfDay

public TimeOfDay (long ticks);
new Microsoft.OData.Edm.TimeOfDay : int64 -> Microsoft.OData.Edm.TimeOfDay
Public Sub New (ticks As Long)

Parameters

ticks
Int64

ticks value of TimeOfDay

Applies to

TimeOfDay(Int32, Int32, Int32, Int32)

Constructor of TimeOfDay

public TimeOfDay (int hour, int minute, int second, int millisecond);
new Microsoft.OData.Edm.TimeOfDay : int * int * int * int -> Microsoft.OData.Edm.TimeOfDay
Public Sub New (hour As Integer, minute As Integer, second As Integer, millisecond As Integer)

Parameters

hour
Int32

Hour value of TimeOfDay

minute
Int32

Minute value of TimeOfDay

second
Int32

Second value of TimeOfDay

millisecond
Int32

Millisecond value of TimeOfDay, whose precision will be millisecond (3 digits).

Applies to