System.Transactions.TransactionStateNonCommittablePromoted.EnterState C# (CSharp) 메소드

EnterState() 개인적인 메소드

private EnterState ( InternalTransaction tx ) : void
tx InternalTransaction
리턴 void
        internal override void EnterState(InternalTransaction tx)
        {
            // Set the transaction state
            CommonEnterState(tx);

            // Let the distributed transaction know that we want to know about the outcome.
            tx.PromotedTransaction.RealTransaction.InternalTransaction = tx;
        }
TransactionStateNonCommittablePromoted