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

TraceInformation() public static method

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

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