Exemplo n.º 1
0
 public void OnCustomNotification(object notifId, object data, bool notifyAsync)
 {
     try
     {
         if (_listener != null)
         {
             _listener.OnCustomNotification(notifId, data, notifyAsync);
         }
     }
     catch
     {
     }
 }
 public void OnCustomNotification(object notifId, object data, EventContext eventContext)
 {
     try
     {
         if (_listener != null)
         {
             _listener.OnCustomNotification(notifId, data, true);
         }
     }
     catch
     {
     }
 }