WorkflowStatus Enumeration |
Specifies the status of a workflow instance.
Namespace: Scanjour.Workflow4.HostAssembly: Scanjour.Workflow4.Host (in Scanjour.Workflow4.Host.dll) Version: 24.5.0.0 (24.5.0.0)
Syntaxpublic enum WorkflowStatus
Public Enumeration WorkflowStatus
public enum class WorkflowStatus
MembersMember name | Value | Description |
---|
Initialize | 0 |
The workflow instance data has been created but the instance is not created.
|
Created | 1 |
The workflow instance has been created but is not yet running.
|
Running | 2 |
The workflow instance is running.
|
Persisted | 3 |
The workflow instance is idle.
|
Completed | 4 |
The workflow instance has completed.
|
Faulted | 5 |
The workflow instance has been terminated by an unhandled exception.
|
Terminated | 6 |
The workflow instance has been terminated.
|
See Also