Class TimeOfDay (2.10.0)

public sealed class TimeOfDay : IMessage<TimeOfDay>, IEquatable<TimeOfDay>, IDeepCloneable<TimeOfDay>, IBufferMessage, IMessage

Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are [google.type.Date][google.type.Date] and google.protobuf.Timestamp.

Inheritance

object > TimeOfDay

Namespace

Google.Type

Assembly

Google.Api.CommonProtos.dll

Constructors

TimeOfDay()

public TimeOfDay()

TimeOfDay(TimeOfDay)

public TimeOfDay(TimeOfDay other)
Parameter
NameDescription
otherTimeOfDay

Fields

HoursFieldNumber

public const int HoursFieldNumber = 1

Field number for the "hours" field.

Field Value
TypeDescription
int

MinutesFieldNumber

public const int MinutesFieldNumber = 2

Field number for the "minutes" field.

Field Value
TypeDescription
int

NanosFieldNumber

public const int NanosFieldNumber = 4

Field number for the "nanos" field.

Field Value
TypeDescription
int

SecondsFieldNumber

public const int SecondsFieldNumber = 3

Field number for the "seconds" field.

Field Value
TypeDescription
int

Properties

Descriptor

public static MessageDescriptor Descriptor { get; }
Property Value
TypeDescription
MessageDescriptor

Hours

public int Hours { get; set; }

Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.

Property Value
TypeDescription
int

Minutes

public int Minutes { get; set; }

Minutes of hour of day. Must be from 0 to 59.

Property Value
TypeDescription
int

Nanos

public int Nanos { get; set; }

Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.

Property Value
TypeDescription
int

Parser

public static MessageParser<TimeOfDay> Parser { get; }
Property Value
TypeDescription
MessageParserTimeOfDay

Seconds

public int Seconds { get; set; }

Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.

Property Value
TypeDescription
int

Methods

CalculateSize()

public int CalculateSize()
Returns
TypeDescription
int

Clone()

public TimeOfDay Clone()
Returns
TypeDescription
TimeOfDay

Equals(TimeOfDay)

public bool Equals(TimeOfDay other)
Parameter
NameDescription
otherTimeOfDay
Returns
TypeDescription
bool

Equals(object)

public override bool Equals(object other)
Parameter
NameDescription
otherobject
Returns
TypeDescription
bool
Overrides

GetHashCode()

public override int GetHashCode()
Returns
TypeDescription
int
Overrides

MergeFrom(CodedInputStream)

public void MergeFrom(CodedInputStream input)
Parameter
NameDescription
inputCodedInputStream

MergeFrom(TimeOfDay)

public void MergeFrom(TimeOfDay other)
Parameter
NameDescription
otherTimeOfDay

ToString()

public override string ToString()
Returns
TypeDescription
string
Overrides

WriteTo(CodedOutputStream)

public void WriteTo(CodedOutputStream output)
Parameter
NameDescription
outputCodedOutputStream