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
Співпраця з нами на GitHub
Джерело цього вмісту можна знайти на GitHub, де також можна створювати й переглядати запитання та запити на внесення змін. Докладні відомості наведено в нашому посібнику для співавторів.