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

TransactionRollback() private method

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

            if (IsEnabled(EventLevel.Warning, ALL_KEYWORDS))
            {
                TransactionRollback(
                    transaction.TransactionTraceId.TransactionIdentifier, type);
            }
        }

Same methods

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