Workflow Foundation versions
* Workflow Foundation was first released in Version 3 of the .NET Framework,Workflow usage scenarios
Windows Workflow Foundation is used to create applications that execute an ordered business process, such as the steps needed to approve a document, hire a candidate for a position, or make a purchase. These processes can execute in a short amount of time, but are typically long-running, in which the application will need to shut down to conserve memory between steps. Typically, business processes to be modeled as workflows have the following features: * Have specific business logic that may need to change periodically, such as the tax or shipping calculation needed to determine the purchase price of an item, or the series of steps needed to approve a purchase, hire, or process. * Have several inputs into the workflow that may come hours or days apart * Have advanced business logic that might require workflow execution to travel down different branches depending on different circumstances. * Need to interact with other systems, such as a database, website or other client application, or web service.Authoring workflows
Workflows are created either by being defined in XAML Extensible Application Markup Language using the workflow designer, or by being assembled programmatically in a .NET language such as C# or VB.NET. If the designer is used, activities are assembled on the workflow designer canvas by dragging them from the toolbox. Workflow arguments and variables are also created and assigned within the designer. If a workflow is assembled in code, activities are instantiated like other CLR objects, and assembled into collections of a single parent activity, usually a Sequence or Flowchart. The single parent activity is then executed using WorkflowApplication or WorkflowInvoker, and runs as a workflow. The term "Workflow" here usually refers to the root activity that is executed by the host. Workflows can use both out-of-box activities and custom activities. Out-of-box activities include flow control activities such as DoWhile, Flowchart-related activities such as FlowDecision, WCF Messaging activities such as Send, and primitive activities that perform simple tasks like Assign and WriteLine. Custom activities are user-created CLR objects that derive from the class System.ActivitiesActivity, and provide declarative functionality by allowing the developer to define the execution behavior of the activity in code. Custom activities can benefit from having a custom activity designer associated with them to enhance the visual authoring experience in the Visual Studio IDE.Books on Workflow
.NET Framework 3.0 and 3.5
* Dharma Shukla, Bob Schmidt: ''Essential Windows Workflow Foundation'', Addison-Wesley Professional, 13 October 2006, * Michael Stiefel: ''Building Applications with Windows Workflow Foundation (WF): Basics of Windows Workflow Foundation (Digital Short Cut)'', June 5, 2007, Kindle, * Brian Noyes: ''Developing Applications with Windows Workflow Foundation (WF) (Video Training)'', June 7, 2007, Brian Noyes, * Brian R. Myers: ''Foundations of WF'', Apress, 23 October 2006, * Bruce Bukovics: ''Pro WF: Windows Workflow in .NET 3.0'', Apress, 19 February 2007, * Todd Kitta: ''Professional Windows Workflow Foundation'', Wrox, 12 March 2007, * Kenn Scribner: ''Microsoft Windows Workflow Foundation Step by Step'', Microsoft Press, 28 February 2007,.NET Framework 4.0
* Mark Collins: ''Beginning WF: Windows Workflow in .NET 4.0'', Apress, March 19, 2010, * Bruce Bukovics: ''Pro WF: Windows Workflow in .NET 4'', Apress, June 29, 2010, * Andrew Zhu: ''Microsoft Windows Workflow Foundation 4.0 Cookbook'', Packt Publishing, September 24, 2010,.NET Framework 4.5
* Bayer White: ''Pro WF 4.5'', Apress, November 14, 2012,References
External links