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

Using a customized extension

WF4 also allows us to define our own WF4 extensions. In this task, we will create a simple extension and use this extension in a workflow.

How to do it...

  1. Create a Workflow Console Application:

    Add a new Workflow Console Application to the Chapter06 solution and name it UsingCustomizedExtension.

  2. Create a customized extension:

    Add a new code file to the project and name the file SimpleExtension.cs. Fill the file with the following code:

    using System.Activities.Hosting; using System.Collections.Generic; using System; namespace UsingCustomizedExtension { public class SimpleExtension : IWorkflowInstanceExtension { private WorkflowInstanceProxy instance; public IEnumerable<object> GetAdditionalExtensions() { return null; } public ...
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