編集

次の方法で共有


WorkflowRuntime.IsStarted Property

Definition

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.

Applies to