WorkflowRuntimeService.State 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 the state of the WorkflowRuntimeService.
protected:
property System::Workflow::Runtime::Hosting::WorkflowRuntimeServiceState State { System::Workflow::Runtime::Hosting::WorkflowRuntimeServiceState get(); };
protected System.Workflow.Runtime.Hosting.WorkflowRuntimeServiceState State { get; }
member this.State : System.Workflow.Runtime.Hosting.WorkflowRuntimeServiceState
Protected ReadOnly Property State As WorkflowRuntimeServiceState
Property Value
One of the WorkflowRuntimeServiceState values.
Remarks
The WorkflowRuntimeService class implements two-phase mechanisms for both starting and stopping a workflow runtime engine service. The first phase of the start mechanism begins when the workflow runtime engine calls the implementation of the Start method for the service. This method should call the base implementation of Start, which sets State to Starting. The second phase occurs after the workflow runtime engine starts all of its workflow runtime engine services when it raises the Started event. The WorkflowRuntimeService internally manages a subscription to this event and its handler will set State to Started.
The two-phase mechanism for stopping a workflow runtime engine service begins when the workflow runtime engine calls the implementation of the Stop method for the service. This method should call the base implementation of Stop, which sets State to Stopping. After it has stopped all of its workflow runtime engine services, the workflow runtime engine raises the Stopped event. The WorkflowRuntimeService internally manages a subscription to this event and its handler will set State to Stopped.