Beispiel #1
0
        private void Operation_HideNotificationRequested([NotNull] object sender, [NotNull] HideNotificationEventArgs e)
        {
            var operation = (IOperation)sender;

            if (operation.Notification != null)
            {
                RequestHideNotification(operation.Notification, e.Callback);
            }
        }
Beispiel #2
0
 protected virtual void OnRequestHideNotification([NotNull] HideNotificationEventArgs e)
 {
     HideNotificationRequested?.Invoke(this, e);
 }