Compensator.BeginAbort(Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.