WorkflowRuntime.WorkflowStarted 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在启动工作流实例后发生。
public:
event EventHandler<System::Workflow::Runtime::WorkflowEventArgs ^> ^ WorkflowStarted;
public event EventHandler<System.Workflow.Runtime.WorkflowEventArgs> WorkflowStarted;
member this.WorkflowStarted : EventHandler<System.Workflow.Runtime.WorkflowEventArgs>
Public Custom Event WorkflowStarted As EventHandler(Of WorkflowEventArgs)
Public Event WorkflowStarted As EventHandler(Of WorkflowEventArgs)
事件类型
示例
下面的代码示例演示如何使用工作流宿主中的 WorkflowRuntime 功能。 该代码将 WorkflowStarted 与一个事件处理程序即一个名为 OnWorkflowStarted
的方法相关联。
此代码示例是 主机通信示例的一部分。
workflowRuntime.WorkflowStarted += OnWorkflowStarted;
注解
通过计划要执行的根活动启动工作流实例后,工作流运行时引擎将引发 WorkflowStarted 事件。 在此事件中,发送方包含 WorkflowRuntime,而 WorkflowEventArgs 包含与事件关联的 WorkflowInstance。
有关处理事件的详细信息,请参阅 处理和引发事件。