Class CycleAttribute
Defines a cyclic method with a given id and some creation flags. Use this if you want to run something every 2 hours and don't care about the WHEN.
If the WHEN is important, use a Schedule!
[AttributeUsage(AttributeTargets.Method, Inherited = false, AllowMultiple = false)]
public sealed class CycleAttribute : Attribute
- Inheritance
-
CycleAttribute
- Inherited Members
Remarks
Only allows for 2 or more Minutes !
Constructors
- CycleAttribute(CYCLE, uint, bool, CATCHUP, bool)
Defines a cyclic method with a given id and some creation flags. Use this if you want to run something every 2 hours and don't care about the WHEN.
If the WHEN is important, use a Schedule!