NLog.NLogTraceListener.TraceTransfer C# (CSharp) Method

TraceTransfer() public method

Writes trace information, a message, a related activity identity and event information to the listener specific output.
public TraceTransfer ( TraceEventCache eventCache, string source, int id, string message, Guid relatedActivityId ) : 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.
id int A numeric identifier for the event.
message string A message to write.
relatedActivityId Guid A object identifying a related activity.
return void
        public override void TraceTransfer(TraceEventCache eventCache, string source, int id, string message, Guid relatedActivityId)
        {
            this.ProcessLogEventInfo(LogLevel.Debug, source, message, null, id, TraceEventType.Transfer, relatedActivityId);
        }