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

TransactionDependentCloneComplete() private method

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

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

Same methods

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