DateTimePart Enumeration

Indicates the date/time element that a SchedulePart represents.

Definition

Namespace: Gemstone.Scheduling
Assembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.167 -- Release Build+1e132a4d484f1823d39b71639f55ad9da4974e99
public enum DateTimePart

Remarks

This enumeration specifically corresponds to the UNIX crontab date/time elements.

Members

Minute0SchedulePart represents minutes. Legal values are 0 through 59, or 60 which maps to 0.
Hour1SchedulePart represents hours. Legal values are 0 through 23, or 24 which maps to 0.
Day2SchedulePart represents day of month. Legal values are 1 through 31.
Month3SchedulePart represents months. Legal values are 1 through 12.
DayOfWeek4SchedulePart represents day of week. Legal values are 0 through 6, or 7 which maps to 0. Sunday is 0 and Saturday is 6.

Extension Methods

GetDescription Retrieves the description of the value that this Enum represents extracted from the DescriptionAttribute, or the enumeration name if no description is available.
(Defined by EnumExtensions)
GetFormattedName Retrieves a formatted name of the value that this Enum represents for visual display. Enum string name is converted to a label with spaces before each capital letter, other than the first.
(Defined by EnumExtensions)

See Also