コード例 #1
0
 public void RaiseNotificationFailed(TNotification notification, AggregateException exception)
 {
     OnNotificationFailed?.Invoke(notification, exception);
 }
コード例 #2
0
ファイル: ResultPush.cs プロジェクト: glimadev/app-framework
 internal void CallbackFailed(object sender, INotification notification, Exception error)
 {
     OnNotificationFailed += NotificationFailed;
     OnNotificationFailed.Invoke(sender, notification, error);
 }