WorkflowRuntime.IsStarted Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value that indicates whether the workflow run-time engine has been started.
public:
property bool IsStarted { bool get(); };
public bool IsStarted { get; }
member this.IsStarted : bool
Public ReadOnly Property IsStarted As Boolean
Property Value
true
if the workflow run-time engine has been started; otherwise, false
. The default is false
.
Remarks
IsStarted indicates that the workflow run-time engine services are running. IsStarted is false
until the host calls StartRuntime. It remains true
until the host calls StopRuntime.
Note
You cannot add core services to the workflow run-time engine while it is running. Core services are services that derive from the WorkflowSchedulerService class, the DefaultWorkflowCommitWorkBatchService class, the WorkflowPersistenceService class, and the TrackingService class.