How to define state machine in Windows Workflow Foundation (WF)
Posted by: Wortzels blog,
on 14 Jul 2008 |
View original | Bookmarked: 0 time(s)
Windows Workflow Foundation is a powerful framework to develop a workflow component in your application. This framework has two workflow types: Sequential workflow (pre-defined flow) and State Machine (event driven flow). In this post Ill explain and show you how to define a workflow from the later kind.
Each state machine consists of two major components: state (unique configuration) and Transitions (between the states, based on events or input). Each state machine should have initialize state...