GSF.Diagnostics.Logger.AppendStackMessages C# (CSharp) Method

AppendStackMessages() public static method

Temporarily appends data to the thread's stack so the data can be propagated to any messages generated on this thread. Be sure to call Dispose on the returned object to remove this from the stack.
public static AppendStackMessages ( LogStackMessages messages ) : IDisposable
messages LogStackMessages
return IDisposable
        public static IDisposable AppendStackMessages(LogStackMessages messages)
        {
            return ThreadLocalThreadStack.Value.AppendStackMessages(messages);
        }

Same methods

Logger::AppendStackMessages ( string key, string value ) : IDisposable