《WF编程》系列之47 第八章 工作流中的通信
2010-10-01 08:20:45 来源:WEB开发网相关性特性
当工作流是一个RequestVote方法时,它会包括一个重要的信息——用户名参数。如果我们请求Scott的投票,那么我们应该在下面的活动中得到Scott的投票回复。用户名参数可以和活动结合在一起——我们只需要通知工作流这个参数的重要性。下面的代码是我们的服务接口的修正版本,以及事件参数类:
[ExternalDataExchange]
[CorrelationParameter("userName")]
public interface IBugVotingService
{
[CorrelationAlias("userName", "e.UserName")]
void RequestVote(string userName);
[CorrelationInitializer]
event EventHandler<VoteCompletedEventArgs> VoteCompleted;
}
[Serializable]
public class VoteCompletedEventArgs : ExternalDataEventArgs
{
public VoteCompletedEventArgs(Guid instanceID, string userName, bool isYesVote)
: base(instanceID)
{
_userName = userName;
_isYesVote = isYesVote;
}
private string _userName;
public string UserName
{
get { return _userName; }
set { _userName = value; }
}
private bool _isYesVote;
public bool IsYesVote
{
get { return _isYesVote; }
set { _isYesVote = value; }
}
}
- ››WF 4.0 beta1中的跟踪机制
- ››WF 4.0的建模风格:顺序和Flowchart
- ››WF4.0 Beta1之旅(5):规则引擎的变化
- ››WF 4.0 beta1活动概览(1):Procedural
- ››WF4.0 Beta1之旅(4):Bookmark的使用
- ››WF4.0 Beta1之旅:基本介绍
- ››WF4.0 Beta1之旅(2):异常处理
- ››WF4.0 Beta1之旅(3):全新的FlowChart
- ››WF 应用场景指南: SharePoint 与工作流(上)
- ››WF 应用场景指南: 展现流(Presentation Flow)
- ››WF单元测试系列1:测试基本的Activity
- ››WF单元测试系列2:简单测试Activity的行为
更多精彩
赞助商链接