![]() | Task |
[DefaultValueAttribute(TaskInstancesPolicy.IgnoreNew)] public enum TaskInstancesPolicy
Member name | Value | Description |
---|---|---|
Parallel | 0 | Starts new instance while an existing instance is running. |
Queue | 1 | Starts a new instance of the task after all other instances of the task are complete. |
IgnoreNew | 2 | Does not start a new instance if an existing instance of the task is running. |
StopExisting | 3 | Stops an existing instance of the task before it starts a new instance. |