System.Transactions.TransactionStatePromotedNonMSDTCIndoubt.PromotedTransactionOutcome C# (CSharp) 메소드

PromotedTransactionOutcome() 보호된 메소드

protected PromotedTransactionOutcome ( InternalTransaction tx ) : void
tx InternalTransaction
리턴 void
        protected override void PromotedTransactionOutcome(InternalTransaction tx)
        {
            if ((null == tx._innerException) && (null != tx.PromotedTransaction))
            {
                tx._innerException = tx.PromotedTransaction.InnerException;
            }
            throw TransactionInDoubtException.Create(TraceSourceType.TraceSourceBase, SR.TransactionIndoubt, tx._innerException, tx.DistributedTxId);
        }