Esempio n. 1
0
 public void ShowNotification(String message)
 {
     try
     {
         if (null == pipeFactory || null == pipeProxy)
         {
             throw new ApplicationException("Intercomm initialization error");
         }
         pipeProxy.ShowNotification(message);
     }
     catch (Exception)
     {
     }
 }