September 2010
Intermediate to advanced
272 pages
5h 16m
English
In this task, we will create a WF program that accepts arguments when initialized in the WF host. In WF4, we can use InArguments to define the way data flows into an activity.
Create a new Workflow Console Application under the Chapter01 solution. Name the project UseInArgument
.
Create a workflow as shown in the following screenshot:

Open the Program.cs file and change the host code as follows:
using System.Activities; using System.Activities.Statements; namespace UseInArgument { class Program { static void Main(string[] ...