public static void Raise(bool success)
 {
     try
       {
     TraceCallReturnEvent event1 = new TraceCallReturnEvent();
     event1.m_Success = success;
     event1.SignTheEvent();
       }
       catch (Exception exception1)
       {
     ReportException(exception1);
       }
 }
 public static void Raise(string message)
 {
     try
       {
     TraceCallReturnEvent event1 = new TraceCallReturnEvent();
     event1.m_Message = message;
     event1.SignTheEvent();
       }
       catch (Exception exception1)
       {
     ReportException(exception1);
       }
 }
 public static void Raise(bool success, string format, params object[] paramInfo)
 {
     try
       {
     TraceCallReturnEvent event1 = new TraceCallReturnEvent();
     event1.m_Success = success;
     event1.Properties.Add("Returns", ComposeMessageString(format, paramInfo));
     event1.SignTheEvent();
       }
       catch (Exception exception1)
       {
     ReportException(exception1);
       }
 }