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