Example #1
0
 public static void TraceOperationStop(string message)
 {
     TraceInternal.TraceEvent(TraceEventType.Stop, 0, message, null);
 }
Example #2
0
 public static void TraceOperationStop(string format, params object[] args)
 {
     TraceInternal.TraceEvent(TraceEventType.Stop, 0, format, args);
 }
Example #3
0
 public static void TraceError(string format, params object[] args)
 {
     TraceInternal.TraceEvent(TraceEventType.Error, 0, format, args);
 }
Example #4
0
 public static void TraceError(string message)
 {
     TraceInternal.TraceEvent(TraceEventType.Error, 0, message, null);
 }
Example #5
0
 public static void TraceWarning(string format, params object[] args)
 {
     TraceInternal.TraceEvent(TraceEventType.Warning, 0, format, args);
 }
Example #6
0
 public static void TraceWarning(string message)
 {
     TraceInternal.TraceEvent(TraceEventType.Warning, 0, message, null);
 }
Example #7
0
 public static void TraceInformation(string message)
 {
     TraceInternal.TraceEvent(TraceEventType.Information, 0, message, null);
 }