Activity.Compensating 事件

定义

Activity 上运行补偿方法时发生。

public:
 event EventHandler<System::Workflow::ComponentModel::ActivityExecutionStatusChangedEventArgs ^> ^ Compensating;
[System.ComponentModel.Browsable(false)]
public event EventHandler<System.Workflow.ComponentModel.ActivityExecutionStatusChangedEventArgs> Compensating;
[<System.ComponentModel.Browsable(false)>]
member this.Compensating : EventHandler<System.Workflow.ComponentModel.ActivityExecutionStatusChangedEventArgs> 
Public Custom Event Compensating As EventHandler(Of ActivityExecutionStatusChangedEventArgs) 

事件类型

属性

注解

引发事件时,将通过委托调用事件处理程序。

Compensating 方法还允许派生类对事件进行处理而不必附加委托。 这是在派生类中处理事件的首选技术。

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

继承者说明

在派生类中重写 Compensating 时,一定要调用基类的 Compensating 方法,以便已注册的委托能够接收事件。

适用于