[转]Using the Interop Activity in a .NET Framework 4 Workflow
本文转自:http://msdn.microsoft.com/en-us/library/ee264174(v=vs.100).aspx
This topic applies to Windows Workflow Foundation 4 (WF4).
Activities created using .NET Framework 3.0 or .NET Framework 3.5 can be used in a .NET Framework 4 workflow by using the Interop activity. This topic provides an overview of using the Interop activity.
Visual Basic Note: |
|---|
| The Interop activity does not appear in the workflow designer toolbox unless the workflow's project has its Target Framework setting set to .Net Framework 4. |
Using the Interop Activity in .NET Framework 4 Workflows
In this topic, a .NET Framework 3.5 activity library is created that contains a DiscountCalculator activity. The DiscountCalculator calculates a discount based on a purchase amount and consists of a SequenceActivity that contains a PolicyActivity.
Note: |
|---|
| The .NET Framework 3.5 activity created in this topic uses a PolicyActivity to implement the logic of the activity. It is not required to use a custom .NET Framework 3.5 activity or the Interop activity in order to use rules in a .NET Framework 4 workflow. For an example of using rules in a .NET Framework 4 workflow without using the Interop activity, see the Policy Activity in .NET Framework 4 sample. |
To create the .NET Framework 3.5 activity library project
Open Visual Studio 2010 and select New and then Project… from the File menu.
Expand the Other Project Types node in the Installed Templates pane and select Visual Studio Solutions.
Select Blank Solution from the Visual Studio Solutions list. Type PolicyInteropDemo in the Name box and click OK.
Right-click PolicyInteropDemo in Solution Explorer and select Add and then New Project….
Tip:If the Solution Explorer window is not visible, select Solution Explorer from the View menu. In the Installed Templates list, select Visual C# and then Workflow. Select .NET Framework 3.5 from the .NET Framework version drop-down list, and then select Workflow Activity Library from the Templates list.
Type PolicyActivityLibrary in the Name box and click OK.
Right-click Activity1.cs in Solution Explorer and select Delete. Click OK to confirm.
To create the DiscountCalculator activity
Right-click PolicyActivityLibrary in Solution Explorer and select Add and then Activity….
Select Activity (with code separation) from the Visual C# Items list. Type DiscountCalculator in the Name box and click OK.
Right-click DiscountCalculator.xoml in Solution Explorer and select .
Add the following three properties to the
DiscountCalculatorclass.Right-click DiscountCalculator.xoml in Solution Explorer and select View Designer.
Drag a Policy activity from the Windows Workflow v3.0 section of the Toolbox and drop it in the DiscountCalculator activity.
Tip:If the Toolbox window is not visible, select Toolbox from the View menu.
To configure the rules
Click the newly added Policy activity to select it, if it is not already selected.
Click the RuleSetReference property in the Properties window to select it, and click the ellipsis button to the right of the property.
Tip:If the Properties window is not visible, choose Properties Window from the View menu. Select Click New….
Click Add Rule.
Type the following expression into the Condition box.
this.Subtotal >= 50 && this.Subtotal < 100
Type the following expression into the Then Actions box.
this.DiscountPercent = 0.075
Click Add Rule.
Type the following expression into the Condition box.
this.Subtotal >= 100
Type the following expression into the Then Actions box.
this.DiscountPercent = 0.15
Click Add Rule.
Type the following expression into the Condition box.
this.DiscountPercent > 0
Type the following expression into the Then Actions box.
this.Total = this.Subtotal - this.Subtotal * this.DiscountPercent
Type the following expression into the Else Actions box.
this.Total = this.Subtotal
Click OK to close the Rule Set Editor dialog box.
Ensure that the newly-created RuleSet is selected in the Name list, and click OK.
Press CTRL+SHIFT+B to build the solution.
The rules added to the DiscountCalculator activity in this procedure are shown in the following code example.
Rule1: IF this.Subtotal >= 50 && this.Subtotal < 100
THEN this.DiscountPercent = 0.075 Rule2: IF this. Subtotal >= 100
THEN this.DiscountPercent = 0.15 Rule3: IF this.DiscountPercent > 0
THEN this.Total = this.Subtotal - this.Subtotal * this.DiscountPercent
ELSE this.Total = this.Subtotal
When the PolicyActivity executes, these three rules evaluate and modify the Subtotal, DiscountPercent, and Total property values of the DiscountCalculator activity to calculate the desired discount.
Using the DiscountCalculator Activity with the Interop Activity
To use the DiscountCalculator activity inside a .NET Framework 4 workflow, the Interop activity is used. In this section two workflows are created, one using code and one using the workflow designer, which show how to use the Interop activity with the DiscountCalculator activity. The same host application is used for both workflows.
To create the host application
Right-click PolicyInteropDemo in Solution Explorer and select Add, and then New Project….
Ensure that .NET Framework 4 is selected in the .NET Framework version drop-down list, and select Workflow Console Application from the Visual C# Items list.
Type PolicyInteropHost into the Name box and click OK.
Right-click PolicyInteropHost in Solution Explorer and select Properties.
In the Target framework drop-down list, change the selection from .NET Framework 4 Client Profile to .NET Framework 4. Click Yes to confirm.
Right-click PolicyInteropHost in Solution Explorer and select Add Reference….
Select PolicyActivityLibrary from the Projects tab and click OK.
Right-click PolicyInteropHost in Solution Explorer and select Add Reference….
Select System.Workflow.Activities, System.Workflow.ComponentModel, and then System.Workflow.Runtime from the .NET tab and click OK.
Right-click PolicyInteropHost in Solution Explorer and select Set as StartUp Project.
Press CTRL+SHIFT+B to build the solution.
Using the Interop Activity in Code
In this example, a workflow definition is created using code that contains the Interop activity and the DiscountCalculator activity. This workflow is invoked using WorkflowInvoker and the results of the rule evaluation are written to the console using a WriteLine activity.
To use the Interop activity in code
Right-click Program.cs in Solution Explorer and select .
Add the following
usingstatement at the top of the file.Remove the contents of the
Mainmethod and replace with the following code.Create a new method in the
Programclass calledCalculateDiscountUsingCodeWorkflowthat contains the following code.static void CalculateDiscountUsingCodeWorkflow()
{
Variable<double> Subtotal = new Variable<double>
{
Default = 75.99,
Name = "Subtotal"
}; Variable<double> DiscountPercent = new Variable<double>
{
Name = "DiscountPercent"
}; Variable<double> Total = new Variable<double>
{
Name = "Total"
}; Activity wf = new Sequence
{
Variables = { Subtotal, DiscountPercent, Total },
Activities =
{
new Interop
{
ActivityType = typeof(DiscountCalculator),
ActivityProperties =
{
{ "Subtotal", new InArgument<double>(Subtotal) },
{ "DiscountPercentOut", new OutArgument<double>(DiscountPercent) },
{ "TotalOut", new OutArgument<double>(Total) }
}
},
new WriteLine
{
Text = new InArgument<string>(env =>
string.Format("Subtotal: {0:C}, Discount {1}%, Total {2:C}",
Subtotal.Get(env), DiscountPercent.Get(env) * 100, Total.Get(env)))
}
}
}; WorkflowInvoker.Invoke(wf);
}
Note:The Subtotal,DiscountPercent, andTotalproperties of theDiscountCalculatoractivity are surfaced as arguments of the Interop activity, and bound to local workflow variables in the Interop activity’s ActivityProperties collection.Subtotalis added as an In argument because theSubtotaldata flows into the Interop activity, andDiscountPercentandTotalare added as Out arguments because their data flows out of the Interop activity. Note that the two Out arguments are added with the namesDiscountPercentOutandTotalOutto indicate that they represent Out arguments. TheDiscountCalculatortype is specified as the Interop activity’s ActivityType.Press CTRL+F5 to build and run the application. Substitute different values for the
Subtotalvalue to test out the different discount levels provided by theDiscountCalculatoractivity.
Using the Interop Activity in the Workflow Designer
In this example, a workflow is created using the workflow designer. This workflow has the same functionality as the previous example, except than instead of using a WriteLine activity to display the discount, the host application retrieves and displays the discount information when the workflow completes. Also, instead of using local workflow variables to contain the data, arguments are created in the workflow designer and the values are passed in from the host when the workflow is invoked.
To host the PolicyActivity using a Workflow Designer-created workflow
Right-click Workflow1.xaml in Solution Explorer and select Delete. Click OK to confirm.
Right-click PolicyInteropHost in Solution Explorer and select Add, New Item….
Expand the Visual C# Items node and select Workflow. Select Activity from the Visual C# Items list.
Type DiscountWorkflow into the Name box and click Add.
Click the Arguments button on the lower left side of the workflow designer to display the Arguments pane.
Click Create Argument.
Type Subtotal into the Name box, select In from the Direction drop-down, select Double from the Argument type drop-down, and then press ENTER to save the argument.
Note:If Double is not in the Argument type drop-down list, select Browse for Types …, type System.Double in the Type Name box, and click OK. Click Create Argument.
Type DiscountPercent into the Name box, select Out from the Direction drop-down, select Double from the Argument type drop-down, and then press ENTER to save the argument.
Click Create Argument.
Type Total into the Name box, select Out from the Direction drop-down, select Double from the Argument type drop-down, and then press ENTER to save the argument.
Click the Arguments button on the lower left side of the workflow designer to close the Arguments pane.
Drag a Sequence activity from the Control Flow section of the Toolbox and drop it onto the workflow designer surface.
Drag an Interop activity from the Migration section of the Toolbox and drop it in the Sequence activity.
Click the Interop activity on the Click to browse… label, type DiscountCalculator in the Type Name box, and click OK.
Note:When the Interop activity is added to the workflow and the DiscountCalculatortype is specified as its ActivityType, the Interop activity exposes three In arguments and three Out arguments that represent the three public properties of theDiscountCalculatoractivity. The In arguments have the same name as the three public properties, and the three Out arguments have the same names with Out appended to the property name. In the following steps, the workflow arguments created in the previous steps are bound to the Interop activity’s arguments.Type DiscountPercent into the Enter a VB expression box to the right of the DiscountPercentOut property and press TAB.
Type Subtotal into the Enter a VB expression box to the right of the Subtotal property and press TAB.
Type Total into the Enter a VB expression box to the right of the TotalOut property and press TAB.
Right-click Program.cs in Solution Explorer and select .
Add the following
usingstatement at the top of the file.Comment out the call to the
CalculateDiscountInCodemethod in theMainmethod and add the following code.
Note:If you did not follow the previous procedure and the default Maincode is present, replace the contents ofMainwith the following code.Create a new method in the
Programclass calledCalculateDiscountUsingDesignerWorkflowthat contains the following code.static void CalculateDiscountUsingDesignerWorkflow()
{
double SubtotalValue = 125.99;
Dictionary<string, object> wfargs = new Dictionary<string, object>
{
{"Subtotal", SubtotalValue}
}; Activity wf = new DiscountWorkflow(); IDictionary<string, object> outputs =
WorkflowInvoker.Invoke(wf, wfargs); Console.WriteLine("Subtotal: {0:C}, Discount {1}%, Total {2:C}",
SubtotalValue, (double)outputs["DiscountPercent"] * 100,
outputs["Total"]);
}Press CTRL+F5 to build and run the application. To specify a different
Subtotalamount, change the value ofSubtotalValuein the following code.
Rules Features Overview
The WF rules engine provides support for processing rules in a priority-based manner with support for forward chaining. Rules can be evaluated for a single item or for items in a collection. For an overview of rules and information on specific rules functionality, please refer to the following table.
| Rules Feature | Documentation |
|---|---|
|
Rules Overview |
Introduction to the Windows Workflow Foundation Rules Engine |
|
RuleSet |
|
|
Evaluation of Rules |
|
|
Rules Chaining |
|
|
Processing Collections in Rules |
|
|
Using the PolicyActivity |
Workflows created in .NET Framework 4 do not use all of the rules features provided by WF, such as declarative activity conditions and conditional activities such as the ConditionedActivityGroup and ReplicatorActivity. If required, this functionality is available for workflows created using .NET Framework 3.0 and .NET Framework 3.5. For more information, seeMigrating Workflows.
[转]Using the Interop Activity in a .NET Framework 4 Workflow的更多相关文章
- Activity、Task、应用和进程
http://www.cnblogs.com/franksunny/archive/2012/04/17/2453403.html Activity.Task.应用和进程 为了阅读方便,将文档转成pd ...
- VS2012 开发SharePoint 2013 声明式workflow action(activity)之 HelloWorld
本文讲述VS2012 开发SharePoint 2013 声明式workflow action 之 HelloWorld. 使用VS2012开发客户化的workflow action是SharePoi ...
- activity 工作流学习(一)
一.了解工作流 1.工作流(Workflow),就是“业务过程的部分或整体在计算机应用环境下的自动化”,它主要解决的是“使在多个参与者之间按照某种预定义的规则传递文档.信息或任务的过程自动进行,从而实 ...
- Sharepoint学习笔记—习题系列--70-576习题解析 -(Q141-Q143)
Question 141 You are planning an upgrade to a SharePoint 2010 application. You have the following r ...
- EF 5 最佳实践白皮书
Performance Considerations for Entity Framework 5 By David Obando, Eric Dettinger and others Publish ...
- Software Engineering: 3. Project planning
recourse: "Software Engineering", Ian Sommerville Keywords for this chapter: planning sche ...
- android实现qq邮箱多个图标效果
前几天,蛋疼的技术主管非要实现类似装一个qq邮箱,然后能够使用qq邮箱日历的那么一个东西.相当于一个应用生成两个图标,可是不同的是点击不同的图标能够进入不同的应用,例如以下图的效果. 这效果百度了一天 ...
- Contoso 大学 - 10 - 高级 EF 应用场景
原文 Contoso 大学 - 10 - 高级 EF 应用场景 By Tom Dykstra, Tom Dykstra is a Senior Programming Writer on Micros ...
- Unity 接MM横屏闪退的原因
=.=研究了1天接SDK到处都在报错,于是使用logcat查看原因截取到这样的Exception. call to OpenGL ES API withno current context(logge ...
随机推荐
- nagios 安装配置(包含nrpe端)全 (三)
四.系统的配置: 1.介绍 在配置过程中涉及到的几个定义有:主机.主机组,服务.服务组.联系人.联系人组,监控时间.监控命令等. 最重要的有四点: 第一:定义监控哪些主机.主机组.服务和服务组: 第二 ...
- Spring学习笔记——Spring中lazy-init与abstract具体解释
Spring的懒载入的作用是为了避免无谓的性能开销,就是当真正须要数据的时候才去运行数据的载入操作.不只在Spring中.我们在实际的编码过程中也应该借鉴这种思想,来提高我们程序的效率. 首先我们看一 ...
- shell选择语句、循环语句
判断语句: if 判断条件 then 语句 [elif] [语句] ... [else 语句] fi #!/bin/bash if [ $# -eq 0 ] t ...
- 设置清除html5页面缓存
设置清除html5页面缓存 html5端设置 meta 标签: <meta http-equiv="Pragma" content="no-cache" ...
- Library Project里面使用Case语句判断R.id值报错。case expressions must be constant expressions
原文地址:http://blog.csdn.net/wchinaw/article/details/7325641 在一般的Android项目里R里面的资源声明看起来是这样的: public stat ...
- Windows的MAX_PATH
MAX_PATH的解释: 文件名最长256(ANSI),加上盘符(X:\)3字节,259字节,再加上结束符1字节,共260http://msdn.microsoft.com/en-us/library ...
- ORACLE 创建视图索引序列
/* 视图View 视图是从若干基本表和(或)其他视图构造出来的表 视图存放的都是查询语句,并没有真实的数据 虚表 作用 限制对数据的操作 复杂查询变简单 提供相同数据的不同显示 UNION ALL ...
- Android无法自动创建USB打印机节点/dev/usb/lp0【转】
本文转载自:http://blog.csdn.net/u013686019/article/details/50165059 Android: 4.4.4 一.问题分析 当把USB打印机插入Andro ...
- caioj1270: 概率期望值1:小象涂色
DP深似海,得其得天下.——题记 叕叕叕叕叕叕叕叕叕叕叕(第∞次学DP内容)被D飞了,真的被DP(pa)了.这次D我的是大叫着第二题比较难(小象涂色傻b题)的Mocha(zzz)大佬,表示搞个概率DP ...
- Masonry remake更新约束
前言 说到iOS自动布局,有很多的解决办法.有的人使用xib/storyboard自动布局,也有人使用frame来适配.对于前者,笔者并不喜欢,也不支持.对于后者,更是麻烦,到处计算高度.宽度等,千万 ...