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

TraceVerbose() public static method

Traces an event of type TraceEventType.Verbose with the given message.
public static TraceVerbose ( this source, string message ) : void
source this
message string
return void
		public static void TraceVerbose(this ITraceSource source, string message)
		{
			Guard.NotNull(() => source, source);

			source.Trace(new MessageTraceEvent(TraceEventType.Verbose, 0, message));
		}