System.Transactions.TransactionStateAborted.BeginCommit C# (CSharp) Method

BeginCommit() private method

private BeginCommit ( InternalTransaction tx, bool asyncCommit, AsyncCallback asyncCallback, object asyncState ) : void
tx InternalTransaction
asyncCommit bool
asyncCallback AsyncCallback
asyncState object
return void
        internal override void BeginCommit(InternalTransaction tx, bool asyncCommit, AsyncCallback asyncCallback, object asyncState)
        {
            // End Commit Must throw a TransactionAbortedException to let the caller know that the tx aborted.
            throw CreateTransactionAbortedException(tx);
        }