System.Diagnostics.TraceSourceExtensions.TraceVerbose C# (CSharp) Method

TraceVerbose() private method

private TraceVerbose ( this traceSource, string msg ) : void
traceSource this
msg string
return void
        public static void TraceVerbose(this TraceSource traceSource, string msg)
        {
            Trace(traceSource, TraceEventType.Verbose, msg);
        }