Skip to Content
Microsoft Windows Workflow Foundation 4.0 Cookbook
book

Microsoft Windows Workflow Foundation 4.0 Cookbook

by Andrew Zhu
September 2010
Intermediate to advanced content levelIntermediate to advanced
272 pages
5h 16m
English
Packt Publishing
Content preview from Microsoft Windows Workflow Foundation 4.0 Cookbook

Creating a Composite activity

There are many built-in composite activities in WF4 such as Sequence, While, Parallel, and so on. Is it possible to create our own composite activity? Well, the answer is we can. For demonstration purposes, we will create a MySequence activity in this task.

How to do it...

  1. Create the MySquence activity:

    Add a new code file to the ActivityLibrary project named MySequence.cs. Then, replace all the default code with the following code:

    using System.Activities; using System.Collections.ObjectModel; namespace ActivityLibrary { public class MySequence:NativeActivity { public Collection<Activity> Activities { get; set; } public MySequence() { Activities = new Collection<Activity>(); } int activityCounter = 0; protected override ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Essential Windows Workflow Foundation

Essential Windows Workflow Foundation

Dharma Shukla, Bob Schmidt

Publisher Resources

ISBN: 9781849680783Other