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)
3 references to PromptForSelectionAsync
aspire (1)
Interaction\ExtensionInteractionService.cs (1)
188return await _consoleInteractionService.PromptForSelectionAsync(promptText, choices, choiceFormatter, cancellationToken);
Aspire.Cli.Tests (2)
Interaction\ConsoleInteractionServiceTests.cs (2)
23interactionService.PromptForSelectionAsync("Select an item:", choices, x => x, CancellationToken.None)); 251interactionService.PromptForSelectionAsync("Select an item:", choices, x => x, CancellationToken.None));