IDtcTransaction.Abort(IntPtr, Int32, Int32) 方法
定义
中止事务。Aborts a transaction.
public:
void Abort(IntPtr reason, int retaining, int async);
public:
void Abort(IntPtr manager, int whatever, int whatever2);
public void Abort (IntPtr reason, int retaining, int async);
public void Abort (IntPtr manager, int whatever, int whatever2);
abstract member Abort : nativeint * int * int -> unit
abstract member Abort : nativeint * int * int -> unit
Public Sub Abort (reason As IntPtr, retaining As Integer, async As Integer)
Public Sub Abort (manager As IntPtr, whatever As Integer, whatever2 As Integer)
参数
- reasonmanager
- IntPtr
一个可选的 BOID,指示事务被中止的原因。An optional BOID that indicates why the transaction is being aborted. 该参数可以是 null,指示不提供任何有关中止的原因。This parameter can be null, indicating that no reason for the abort is provided.
- retainingwhatever
- Int32
此值必须为 false。This value must be false.
- asyncwhatever2
- Int32
当 async 是 true 时,执行异步中止并且调用方必须使用 ITransactionOutcomeEvents 了解事务的结果。When async is true, an asynchronous abort is performed and the caller must use ITransactionOutcomeEvents to learn about the outcome of the transaction.
注解
不应实现此接口的任何方法,因为它仅供 TransactionInterop 内部类用于表示 ITransaction 命名空间接口的非托管版本 System.EnterpriseServices 。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.