NLog.NLogTraceListener.TraceEvent C# (CSharp) Метод

TraceEvent() публичный Метод

Writes trace and event information to the listener specific output.
public TraceEvent ( TraceEventCache eventCache, string source, TraceEventType eventType, int id ) : void
eventCache TraceEventCache A object that contains the current process ID, thread ID, and stack trace information.
source string A name used to identify the output, typically the name of the application that generated the trace event.
eventType TraceEventType One of the values specifying the type of event that has caused the trace.
id int A numeric identifier for the event.
Результат void
        public override void TraceEvent(TraceEventCache eventCache, string source, TraceEventType eventType, int id)
        {
            this.ProcessLogEventInfo(TranslateLogLevel(eventType), source, string.Empty, null, id, eventType, null);
        }

Same methods

NLogTraceListener::TraceEvent ( TraceEventCache eventCache, string source, TraceEventType eventType, int id, string format ) : void