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

TransactionSerialized() private method

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

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

Same methods

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