如何创建包含其他活动的活动?
所以。我从 WF4 开始,有一个设计/流程问题。我创建了一个自定义代码活动,它接受“输入参数”并将结果存储到“输出参数”。非常基本。接下来,我使用“If”流运算符,使用“out argument”的结果。所有这些都非常有效。但我的问题是,我可以创建一个将这两个步骤结合在一起的自定义代码活动吗?我考虑从 System.Activities.Statements.If 类扩展,但该类是密封的。有什么建议吗?
谢谢。
SO. I am starting out in WF4 and I have a design/flow question. I created a custom code activity that takes an "in argument" and stores a result to an "out argument". Pretty basic. Next I use an "If" flow operator using the result of the "out argument". All of that works great. But my question is, can I create a custom code activity that combines these two steps together? I looked into extending from the System.Activities.Statements.If class, but the class is sealed. Any suggestions?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它看起来像自定义控制流。您可能会发现在 WF 4 中创作自定义控制流活动一文很有用。
It looks like Custom Control Flow. You may find Authoring Custom Control Flow Activities in WF 4 article to be useful.