8 instantiations of ExtensionOperationCanceledException
aspire (6)
Backchannel\ExtensionBackchannel.cs (5)
565
throw new
ExtensionOperationCanceledException
(string.Format(CultureInfo.CurrentCulture, ErrorStrings.NoSelectionMade, promptText));
598
throw new
ExtensionOperationCanceledException
(string.Format(CultureInfo.CurrentCulture, ErrorStrings.NoSelectionMade, promptText));
622
throw new
ExtensionOperationCanceledException
(string.Format(CultureInfo.CurrentCulture, ErrorStrings.NoSelectionMade, promptText));
648
throw new
ExtensionOperationCanceledException
(string.Format(CultureInfo.CurrentCulture, ErrorStrings.NoSelectionMade, promptText));
674
throw new
ExtensionOperationCanceledException
(string.Format(CultureInfo.CurrentCulture, ErrorStrings.NoSelectionMade, promptText));
Interaction\ExtensionInteractionService.cs (1)
238
throw new
ExtensionOperationCanceledException
(promptText);
Aspire.Cli.Tests (2)
Commands\DoCommandTests.cs (1)
48
PromptForStringCallback = (_, _, _, _, _, _) => throw new
ExtensionOperationCanceledException
("Pipeline step selection was canceled.")
Commands\RunCommandTests.cs (1)
2129
? new
ExtensionOperationCanceledException
("Extension operation canceled.")
8 references to ExtensionOperationCanceledException
aspire (7)
Commands\BaseCommand.cs (1)
183
catch (OperationCanceledException ex) when (cancellationToken.IsCancellationRequested || ex is
ExtensionOperationCanceledException
)
Commands\PipelineCommandBase.cs (1)
408
catch (
ExtensionOperationCanceledException
)
Commands\RunCommand.cs (1)
689
ex is
ExtensionOperationCanceledException
||
Interaction\ExtensionInteractionService.cs (4)
293
if (ex is not
ExtensionOperationCanceledException
)
331
if (ex is not
ExtensionOperationCanceledException
)
370
if (ex is not
ExtensionOperationCanceledException
)
698
catch (Exception ex) when (ex is not
ExtensionOperationCanceledException
)
Aspire.Cli.Tests (1)
Interaction\ExtensionInteractionServiceTests.cs (1)
416
await Assert.ThrowsAsync<
ExtensionOperationCanceledException
>(() =>