Click or drag to resize

WorkflowState Enumeration

Contains the states in which a workflow can be. A workflow can only be in one state at a time.

Namespace:  Enkoni.Framework
Assembly:  Enkoni.Framework (in Enkoni.Framework.dll) Version: 1.3.0.1
Syntax
public enum WorkflowState
Members
  Member nameValueDescription
Init0Indicates that the workflow is created but not yet started.
Starting1Indicates that the workflow is currently starting.
Started2Indicates that the workflow is running.
Pausing3Indicates that the workflow is pausing its processes.
Paused4Indicates that the workflow is currently paused.
Continuing5Indicates that the workflow is resuming its processes.
Continued6Indicates that the workflow is resuming. This basically is equal to the Started state.
Stopping7Indicates that the workflow is stopping its processes.
Stopped8Indicates that the workflow has stopped.
Faulted9Indicates that the workflow is stopped as a result of an error.
See Also