September 2010
Intermediate to advanced
272 pages
5h 16m
English
In this task, we will debug a WF program.
Create a new Workflow Console Application project under the Charpter01 solution. Name the project as DebugWFProgram. In the opening WF designer panel, author a workflow as shown in the following screenshot:

Open
Program.cs file and change the code to:
using System.Activities;
using System.Activities.Statements;
namespace DebugWFProgram{
class Program{
static void Main(string[] args){
WorkflowInvoker.Invoke(new Workflow1()
{
InMessage="In Message"
});
}
}
}
Right-click an activity and select Breadpoint ...