System.Transactions.TransactionsEtwProvider.TransactionCloneCreate C# (CSharp) Method

TransactionCloneCreate() private method

private TransactionCloneCreate ( Transaction transaction, string type ) : void
transaction Transaction
type string
return void
        internal void TransactionCloneCreate(Transaction transaction, string type)
        {
            Debug.Assert(transaction != null, "Transaction needed for the ETW event.");

            if (IsEnabled(EventLevel.Informational, ALL_KEYWORDS))
            {
                TransactionCloneCreate(
                    transaction.TransactionTraceId.TransactionIdentifier, type);
            }
        }

Same methods

TransactionsEtwProvider::TransactionCloneCreate ( string transactionIdentifier, string type ) : void