//Events:
 private void NotificationSlave_NotificationCancelledLollipop(object sender, NotificationCancelledEventArgsLollipop e)
 {
     try
     {
         CancelNotification(e.Key);
     }
     catch (Java.Lang.SecurityException)
     {
         Log.Info("LiveDisplay", "Fail to dismiss the notification, listener was not ready");
     }
 }
Esempio n. 2
0
 //Events:
 private void NotificationSlave_NotificationCancelledLollipop(object sender, NotificationCancelledEventArgsLollipop e)
 {
     CancelNotification(e.Key);
 }
Esempio n. 3
0
 protected virtual void OnNotificationCancelled(NotificationCancelledEventArgsLollipop e)
 {
     NotificationCancelledLollipop?.Invoke(this, e);
 }