Enum RecurringTimerType
Enumerates the possible RecurringTimer types.
Namespace: Neon.Time
Assembly: Neon.Common.dll
Syntax
public enum RecurringTimerType
Fields
| Name | Description |
|---|---|
| Daily | The timer will be fired once per day. |
| Disabled | The timer never fires. |
| Hourly | The timer will be fired once per hour. |
| Interval | The timer is fired on a specified interval rather than a specific period offset. This is similar to how PolledTimer works. |
| Minute | The timer will be fired once per minute. |
| QuarterHour | The timer will be fired once every 15 minutes. |