Click or drag to resize

DateTimePart Enumeration

Indicates the date/time element that a SchedulePart represents.

Namespace: GSF.Scheduling
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.282-beta+fbfa6baa1521236175f6d73fb2eb151a42453aef
Syntax
public enum DateTimePart
Members
Member nameValueDescription
Minute0SchedulePart represents minutes. Legal values are 0 through 59.
Hour1SchedulePart represents hours. Legal values are 0 through 23.
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 7 where 0 is Sunday.

The DateTimePart type exposes the following members.

Extension Methods
 NameDescription
Public Extension MethodGetDescription 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)
Public Extension MethodGetFormattedName Retrieves a formatted name of the value that this Enum represents for visual display.
(Defined by EnumExtensions)
Top
Remarks
This enumeration specifically corresponds to the UNIX crontab date/time elements.
See Also