WorkflowRuntime.Stopped 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
工作流运行时引擎停止后发生。
public:
event EventHandler<System::Workflow::Runtime::WorkflowRuntimeEventArgs ^> ^ Stopped;
public event EventHandler<System.Workflow.Runtime.WorkflowRuntimeEventArgs> Stopped;
member this.Stopped : EventHandler<System.Workflow.Runtime.WorkflowRuntimeEventArgs>
Public Custom Event Stopped As EventHandler(Of WorkflowRuntimeEventArgs)
Public Event Stopped As EventHandler(Of WorkflowRuntimeEventArgs)
事件类型
示例
在下面的示例中,将向 Stopped 的 WorkflowRuntime 事件添加一个事件处理程序。 在此示例中,处理程序是向控制台输出简单消息的匿名方法。
// Create a new workflow runtime
WorkflowRuntime workflowRuntime = new WorkflowRuntime();
// Add an anonymous method as the event handler for the Stopped event.
workflowRuntime.Stopped += new EventHandler<WorkflowRuntimeEventArgs>(
delegate { Console.WriteLine("Workflow runtime stopped."); });
' Create a new workflow runtime
Dim workflowRuntime As New WorkflowRuntime()
' Add a method as the event handler for the Stopped event.
AddHandler workflowRuntime.Stopped, AddressOf RuntimeStopped
注解
StopRuntime 方法在调用 Stopped 方法后引发 Stop 事件,所调用的方法由它派生自 WorkflowRuntimeService 类的每个服务实现。 停止这些工作流运行时引擎服务的顺序并不固定,其中一些服务可能需要保留其他服务所依赖的一些功能,直到也停止这些服务。 引发 WorkflowRuntimeService.OnStopped 事件后,此类服务可重写 Stopped 方法,以执行任何剩余的关闭逻辑。
有关处理事件的详细信息,请参阅 处理和引发事件。