7 instantiations of ExtensionOperationCanceledException
aspire (6)
Backchannel\ExtensionBackchannel.cs (5)
525
throw new
ExtensionOperationCanceledException
(string.Format(CultureInfo.CurrentCulture, ErrorStrings.NoSelectionMade, promptText));
555
throw new
ExtensionOperationCanceledException
(string.Format(CultureInfo.CurrentCulture, ErrorStrings.NoSelectionMade, promptText));
579
throw new
ExtensionOperationCanceledException
(string.Format(CultureInfo.CurrentCulture, ErrorStrings.NoSelectionMade, promptText));
605
throw new
ExtensionOperationCanceledException
(string.Format(CultureInfo.CurrentCulture, ErrorStrings.NoSelectionMade, promptText));
631
throw new
ExtensionOperationCanceledException
(string.Format(CultureInfo.CurrentCulture, ErrorStrings.NoSelectionMade, promptText));
Interaction\ExtensionInteractionService.cs (1)
232
throw new
ExtensionOperationCanceledException
(promptText);
Aspire.Cli.Tests (1)
Commands\DoCommandTests.cs (1)
48
PromptForStringCallback = (_, _, _, _, _, _) => throw new
ExtensionOperationCanceledException
("Pipeline step selection was 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)
614
catch (OperationCanceledException ex) when (ex.CancellationToken == cancellationToken || ex is
ExtensionOperationCanceledException
)
Interaction\ExtensionInteractionService.cs (4)
287
if (ex is not
ExtensionOperationCanceledException
)
325
if (ex is not
ExtensionOperationCanceledException
)
366
if (ex is not
ExtensionOperationCanceledException
)
588
catch (Exception ex) when (ex is not
ExtensionOperationCanceledException
)
Aspire.Cli.Tests (1)
Interaction\ExtensionInteractionServiceTests.cs (1)
177
await Assert.ThrowsAsync<
ExtensionOperationCanceledException
>(() =>