“暂停” .NET 4 中的工作流程?
我要做一个小测试应用程序,我想暂停该应用程序。
我看到有一个“SuspendActivity”,但我在 .Net 4.0 中找不到它,那么我应该如何暂停我的工作流程并从我的应用程序恢复它?
它适用于单个示例,我必须使用“下一步”按钮来显示每个步骤。
非常感谢!
I've to do a small test application, I want to suspend the application.
I saw there is a "SuspendActivity" but I can't find it in .Net 4.0, so how I'm supposed to pause my workflow and resume it from my application?
It's for a single sample on which I've to display every step with a "next" button.
Thank you very much!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您正在寻找 WF 4.0 中的新书签概念。
基本上,您可以创建一个定义书签的自定义活动,当工作流执行到达此活动时,执行将暂停,直到您恢复书签。
查看开发人员手册中的其他活动概念部分.NET 4 中的 Windows Workflow Foundation (WF) 简介
这是对 WF 4.0 的非常好的介绍。希望有帮助!
I think that you are looking for the new Bookmarks concept in WF 4.0.
Basically, you can create a custom activity that defines a bookmark, and when the workflow execution reaches this activity, the execution is suspended until you resume the bookmark.
Take a look into the section Additional activity concepts in A Developer's Introduction to Windows Workflow Foundation (WF) in .NET 4
It is a very good introuduction to WF 4.0. Hope it helps!