Windows 工作流服务 - 它们是什么?

发布于 12-23 16:20 字数 112 浏览 5 评论 0原文

我刚刚开始学习 Windows 工作流,并且正在阅读一本关于该主题的书。我见过一些关于工作流程服务的参考。例如,模型服务就是其中之一。我还没有看到关于这些服务到底是什么的很好的解释。有人可以帮我解决这个问题吗?

I'm just beginning to learn Windows Workflow and am working through a book on the subject. I've seen several references to something called Workflow services. For example, the Model Service is one of them. What I haven't seen is a very good explanation as to what these services really are. Can someone help me with this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烦人精2024-12-30 16:20:36

EditingContext 服务是工作流设计器托管环境使用的一组服务。它们可以为您的工作流程设计器提供非常有用的信息和功能。您可以注入服务实现来更改行为、获取信息或收到有关设计器更改的通知。

有关服务的一些示例以及对每个服务的简要说明:

  • IDesignerDebugView - 控制断点、调试状态和用于调试的源位置
  • IExpressionEditorService - 创建可以在 Visual 上提供智能感知的表达式编辑器Studio(使用 .net VB 内容)和重新托管的场景中。
  • IValidationErrorService - 用于在自定义控件中显示工作流验证消息
  • ModelService - 在设计器更改时引发事件,获取工作流根并查找 itens。查看更多 此处

请参阅此链接获取 EditingContext 服务的完整列表:

EditingContext Services are a set of services used by workflow designer hosting environment. They can provide very usefull information and functionality of your workflow designer. You are able to inject your service implementation to change a behavior, get information or be notified about designer changes.

Some examples on services and a brief explanation of each one:

  • IDesignerDebugView - Controls breakpoints, debug state, and source locations for debugging
  • IExpressionEditorService - Creates expression editors that can provide intellisense on Visual Studio(using .net VB stuff) and in rehosted scenarios.
  • IValidationErrorService - Used to show workflow validation messages in custom controls
  • ModelService - Raise events on designer changes, get workflow root and find itens. See more here

See this link for complete list of EditingContext services:

原来分手还会想你2024-12-30 16:20:36

工作流服务是使用 WF4 工作流实现的 WCF 服务。它通常以接收 SOAP 消息时触发的接收活动开始。当工作流准备好向客户端发送响应时,将使用 SendReply 活动。但是,工作流可以自由地继续运行,并且可以在其生命周期的后期接收更多事件。

A Workflow service is a WCF service implemented using a WF4 workflow. It typically starts with a Receive activity that is triggered when a SOAP message is received. When the workflow is ready to send a response to the client a SendReply activity is used. However the workflow is free to keep on running and can receive more events later on in its life.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文