IDtcTransaction.Abort(IntPtr, Int32, Int32) 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.
Aborts a transaction.
public:
void Abort(IntPtr reason, int retaining, int async);
public void Abort (IntPtr reason, int retaining, int async);
abstract member Abort : nativeint * int * int -> unit
Public Sub Abort (reason As IntPtr, retaining As Integer, async As Integer)
Parameters
- reason
-
IntPtr
nativeint
An optional BOID that indicates why the transaction is being aborted. This parameter can be null
, indicating that no reason for the abort is provided.
- retaining
- Int32
This value must be false
.
- async
- Int32
When async
is true
, an asynchronous abort is performed and the caller must use ITransactionOutcomeEvents
to learn about the outcome of the transaction.
Remarks
You should not implement any method of this interface, as it is used only by the TransactionInterop class internally to represent the unmanaged version of the ITransaction interface of the System.EnterpriseServices namespace.