WorkflowRuntime::IsStarted Property

 

Gets a value that indicates whether the workflow run-time engine has been started.

Namespace:   System.Workflow.Runtime
Assembly:  System.Workflow.Runtime (in System.Workflow.Runtime.dll)

public:
property bool IsStarted {
	bool get();
}

Property Value

Type: System::Boolean

true if the workflow run-time engine has been started; otherwise, false. The default is false.

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.

System_CAPS_noteNote

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.

The following example demonstrates how to access the IsStarted property of a WorkflowRuntime object. In this example, if the runtime is started, a message is printed to the console.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 3.0
Return to top
Show: