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