5 instantiations of ExtensionOperationCanceledException
aspire (5)
Backchannel\ExtensionBackchannel.cs (5)
434throw new ExtensionOperationCanceledException(string.Format(CultureInfo.CurrentCulture, ErrorStrings.NoSelectionMade, promptText)); 464throw new ExtensionOperationCanceledException(string.Format(CultureInfo.CurrentCulture, ErrorStrings.NoSelectionMade, promptText)); 488throw new ExtensionOperationCanceledException(string.Format(CultureInfo.CurrentCulture, ErrorStrings.NoSelectionMade, promptText)); 514throw new ExtensionOperationCanceledException(string.Format(CultureInfo.CurrentCulture, ErrorStrings.NoSelectionMade, promptText)); 540throw new ExtensionOperationCanceledException(string.Format(CultureInfo.CurrentCulture, ErrorStrings.NoSelectionMade, promptText));
6 references to ExtensionOperationCanceledException
aspire (6)
Commands\RunCommand.cs (1)
344catch (OperationCanceledException ex) when (ex.CancellationToken == cancellationToken || ex is ExtensionOperationCanceledException)
Interaction\ExtensionInteractionService.cs (4)
58catch (Exception ex) when (ex is not ExtensionOperationCanceledException) 152if (ex is not ExtensionOperationCanceledException) 184if (ex is not ExtensionOperationCanceledException) 216if (ex is not ExtensionOperationCanceledException)
Program.cs (1)
643if (!(ex is OperationCanceledException && cts.IsCancellationRequested) && ex is not ExtensionOperationCanceledException)