Ejemplo n.º 1
0
 private void reportChannelEvent(
     string name, ConnectionEventArgs.ConnectionEvent connectionEvent)
 {
     if (connectionEventCallback != null)
     {
         try
         {
             connectionEventCallback.Report(name, connectionEvent);
         }
         catch (Exception)
         {
             // ignore exceptions from user code
         }
     }
 }