有阻止 wf4 的活动吗?
有没有办法使用活动来停止其工作流程的执行?
我有多个 TryCatch
活动和 If
活动,如果能够在捕获异常后或在我的 如果
活动。
Is there a way to use an activity to stop the execution of its workflow?
I have multiple TryCatch
activities and If
activities and it would be nice to be able to stop the workflow after catching an exception or if certain criteria aren't met in my If
activities.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 TerminateWorkflow 活动来停止工作流。
You can use the TerminateWorkflow activity to stop a workflow.
对于可能遇到这种情况的其他人来说,只是警告一下,如果将
TerminateWorkflow
放入CompositeActivity
中,它实际上不会终止您的工作流程(它只会终止复合活动) .)Just a word of warning for anyone else who might run into this,
TerminateWorkflow
won't actually terminate your workflow if you put it inside aCompositeActivity
(it will only terminate the composite.)