TimeOfDay Class

Quartz.NET 3.0 API Documentation
Represents a time in hour, minute and second of any given day.
Remarks

The hour is in 24-hour convention, meaning values are from 0 to 23.

Inheritance Hierarchy

SystemObject
  QuartzTimeOfDay

Namespace:  Quartz
Assembly:  Quartz (in Quartz.dll) Version: 3.0.0
Syntax

C#
[SerializableAttribute]
public class TimeOfDay

The TimeOfDay type exposes the following members.

Constructors

  NameDescription
Public methodTimeOfDay(Int32, Int32)
Create a TimeOfDay instance for the given hour, minute (at the zero second of the minute).
Public methodTimeOfDay(Int32, Int32, Int32)
Create a TimeOfDay instance for the given hour, minute and second.
Top
Properties

  NameDescription
Public propertyHour
The hour of the day (between 0 and 23).
Public propertyMinute
The minute of the hour (between 0 and 59).
Public propertySecond
The second of the minute (between 0 and 59).
Top
Methods

  NameDescription
Public methodBefore
Determine with this time of day is before the given time of day.
Public methodEquals (Overrides ObjectEquals(Object).)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode (Overrides ObjectGetHashCode.)
Public methodGetTimeOfDayForDate
Return a date with time of day reset to this object values. The millisecond value will be zero.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodStatic memberHourAndMinuteOfDay
Create a TimeOfDay instance for the given hour, minute (at the zero second of the minute)..
Public methodStatic memberHourMinuteAndSecondOfDay
Create a TimeOfDay instance for the given hour, minute and second.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString (Overrides ObjectToString.)
Top
See Also

Reference