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

EndCommit() private method

private EndCommit ( InternalTransaction tx ) : void
tx InternalTransaction
return void
        internal override void EndCommit(InternalTransaction tx)
        {
            // End Commit Must throw a TransactionAbortedException to let the caller know that the tx aborted.
            throw CreateTransactionAbortedException(tx);
        }