System.Transactions.TransactionStatePromotedNonMSDTCSinglePhaseCommit.ChangeStateTransactionAborted C# (CSharp) 메소드

ChangeStateTransactionAborted() 개인적인 메소드

private ChangeStateTransactionAborted ( InternalTransaction tx, Exception e ) : void
tx InternalTransaction
e Exception
리턴 void
        internal override void ChangeStateTransactionAborted(InternalTransaction tx, Exception e)
        {
            if (tx._innerException == null)
            {
                tx._innerException = e;
            }

            // The durable enlistment must have aborted.  Go to the aborted state.
            TransactionStatePromotedNonMSDTCAborted.EnterState(tx);
        }