public void RaiseNotificationFailed(TNotification notification, AggregateException exception) { OnNotificationFailed?.Invoke(notification, exception); }
internal void CallbackFailed(object sender, INotification notification, Exception error) { OnNotificationFailed += NotificationFailed; OnNotificationFailed.Invoke(sender, notification, error); }