WorkflowRuntime.Started 事件

定义

在启动工作流运行时引擎时发生。

public:
 event EventHandler<System::Workflow::Runtime::WorkflowRuntimeEventArgs ^> ^ Started;
public event EventHandler<System.Workflow.Runtime.WorkflowRuntimeEventArgs> Started;
member this.Started : EventHandler<System.Workflow.Runtime.WorkflowRuntimeEventArgs> 
Public Custom Event Started As EventHandler(Of WorkflowRuntimeEventArgs) 
Public Event Started As EventHandler(Of WorkflowRuntimeEventArgs) 

事件类型

注解

该方法 在验证工作流运行时引擎的核心服务配置后引发 该事件,已调用 其每个派生自 类的服务实现的方法,并已设置为 < a0/>。 无法保证从 WorkflowRuntimeService 类派生的服务由工作流运行时引擎启动的顺序,其中一些工作流运行时引擎服务可能依赖于这些服务提供的功能来完成其启动任务。 工作流运行时引擎服务可以重写 WorkflowRuntimeService.OnStarted 该方法,以执行任何最终启动任务,这些任务需要在引发事件时 Started 支持其他工作流运行时引擎服务。

有关处理事件的详细信息,请参阅 处理和引发事件

适用于