コード例 #1
0
 private void OnClosedInteractor(object sender, InteractorClosedEventArgs args)
 {
     Log.Debug($"Removing notification requests from {args.Interactor}");
     RemoveInteractor(args.Interactor);
 }
コード例 #2
0
 private void OnInteractorClosed(InteractorClosedEventArgs args)
 {
     _interactorManager.CloseInteractor(args.Interactor);
 }
コード例 #3
0
 private void OnClosedInteractor(object sender, InteractorClosedEventArgs args)
 {
     CloseInteractor(args.Interactor);
 }
コード例 #4
0
 private void OnClosedInteractor(object?sender, InteractorClosedEventArgs args)
 {
     _logger.LogDebug("Removing notification requests from {Interactor}", args.Interactor);
     _repository.RemoveInteractor(args.Interactor);
 }