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

TransactionCreated() private method

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

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

Same methods

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