Example #1
0
 public static void ReportMethodLeave()
 {
     DebugReporter.WriteReport(MessageType.Information,
                               "Leaving Method", "Execution leaving method.");
 }
Example #2
0
 public static void Report(MessageType DebugMessageType, string Title, string Body)
 {
     DebugReporter.WriteReport(DebugMessageType,
                               Title, Body);
 }
Example #3
0
 public static void ReportMethodEnter()
 {
     DebugReporter.WriteReport(MessageType.Information,
                               "Entering Method", "Execution entering method.");
 }