Implemented interface member:
method
PromptForSelectionAsync<T>
Aspire.Cli.Interaction.IInteractionService.PromptForSelectionAsync<T>(System.String, System.Collections.Generic.IEnumerable<T>, System.Func<T, System.String>, System.Threading.CancellationToken)
2 references to PromptForSelectionAsync
aspire (1)
Interaction\ExtensionInteractionService.cs (1)
144
return await _consoleInteractionService.
PromptForSelectionAsync
(promptText, choices, choiceFormatter, cancellationToken);
Aspire.Cli.Tests (1)
Interaction\ConsoleInteractionServiceTests.cs (1)
21
interactionService.
PromptForSelectionAsync
("Select an item:", choices, x => x, CancellationToken.None));