6 instantiations of ExtensionOperationCanceledException
aspire (6)
Backchannel\ExtensionBackchannel.cs (5)
435
throw new
ExtensionOperationCanceledException
(string.Format(CultureInfo.CurrentCulture, ErrorStrings.NoSelectionMade, promptText));
465
throw new
ExtensionOperationCanceledException
(string.Format(CultureInfo.CurrentCulture, ErrorStrings.NoSelectionMade, promptText));
489
throw new
ExtensionOperationCanceledException
(string.Format(CultureInfo.CurrentCulture, ErrorStrings.NoSelectionMade, promptText));
515
throw new
ExtensionOperationCanceledException
(string.Format(CultureInfo.CurrentCulture, ErrorStrings.NoSelectionMade, promptText));
541
throw new
ExtensionOperationCanceledException
(string.Format(CultureInfo.CurrentCulture, ErrorStrings.NoSelectionMade, promptText));
Interaction\ExtensionInteractionService.cs (1)
176
throw new
ExtensionOperationCanceledException
(promptText);
6 references to ExtensionOperationCanceledException
aspire (6)
Commands\RunCommand.cs (1)
367
catch (OperationCanceledException ex) when (ex.CancellationToken == cancellationToken || ex is
ExtensionOperationCanceledException
)
Interaction\ExtensionInteractionService.cs (4)
58
catch (Exception ex) when (ex is not
ExtensionOperationCanceledException
)
217
if (ex is not
ExtensionOperationCanceledException
)
249
if (ex is not
ExtensionOperationCanceledException
)
283
if (ex is not
ExtensionOperationCanceledException
)
Program.cs (1)
746
if (!(ex is OperationCanceledException && cts.IsCancellationRequested) && ex is not
ExtensionOperationCanceledException
)