Compensator.BeginAbort(Boolean) Method

Definition

Notifies the Compensating Resource Manager (CRM) Compensator of the abort phase of the transaction completion, and the upcoming delivery of records.

public:
 virtual void BeginAbort(bool fRecovery);
public virtual void BeginAbort (bool fRecovery);
abstract member BeginAbort : bool -> unit
override this.BeginAbort : bool -> unit
Public Overridable Sub BeginAbort (fRecovery As Boolean)

Parameters

fRecovery
Boolean

true to begin abort phase; otherwise, false.

Examples

The following code example demonstrates the implementation of this method.

public:
    virtual void BeginAbort(bool abort) override
    {
        // nothing to do
    }
public override void BeginAbort (bool abort)
{
    // nothing to do
}
Public Overrides Sub BeginAbort(ByVal abort As Boolean) 

End Sub

' nothing to do

Applies to