In the state machine style of workflow authoring, the author models the workflow as a state machine. The workflow itself consists of a set of states. One state is denoted as a start state. Each state can receive a certain set of events. Based on an event, a transition can be made to another state. The state machine workflow can have a final state. When a transition is made to the final state, the workflow is completed.
The following flowchart is an example of a state machine workflow.
The following table lists the state machine-related activities in the Windows Workflow Foundation base activity library.
For more information about workflow authoring styles, see Workflow Authoring Styles.
See Also