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

InvalidOperation() private method

private InvalidOperation ( string type, string operation ) : void
type string
operation string
return void
        internal void InvalidOperation(string type, string operation)
        {
            if (IsEnabled(EventLevel.Error, ALL_KEYWORDS))
            {
                TransactionInvalidOperation(
                    string.Empty, type, operation);
            }
        }
        [Event(TRANSACTION_INVALID_OPERATION_EVENTID, Keywords = Keywords.TraceBase, Level = EventLevel.Error, Task = Tasks.Transaction, Opcode = Opcodes.InvalidOperation, Message = "Transaction Invalid Operation. ID is {0}, type is {1} and operation is {2}")]