private void NotificationSlave_NotificationCancelled(object sender, NotificationCancelledEventArgsKitkat e) { try { #pragma warning disable CS0618 // El tipo o el miembro están obsoletos CancelNotification(e.NotificationPackage, e.NotificationTag, e.NotificationId); #pragma warning restore CS0618 // El tipo o el miembro están obsoletos } catch (Java.Lang.SecurityException) { Log.Info("LiveDisplay", "Fail to dismiss the notification, listener was not ready"); } }
private void NotificationSlave_NotificationCancelled(object sender, NotificationCancelledEventArgsKitkat e) { #pragma warning disable CS0618 // El tipo o el miembro están obsoletos CancelNotification(e.NotificationPackage, e.NotificationTag, e.NotificationId); #pragma warning restore CS0618 // El tipo o el miembro están obsoletos }
//Raising events. protected virtual void OnNotificationCancelled(NotificationCancelledEventArgsKitkat e) { NotificationCancelled?.Invoke(this, e); }