2 implementations of PromptForSelectionAsync
aspire (1)
Backchannel\ExtensionBackchannel.cs (1)
541public async Task<T> PromptForSelectionAsync<T>(string promptText, IEnumerable<T> choices, Func<T, string> choiceFormatter,
Aspire.Cli.Tests (1)
TestServices\TestExtensionBackchannel.cs (1)
182public Task<T> PromptForSelectionAsync<T>(string promptText, IEnumerable<T> choices, Func<T, string> choiceFormatter, CancellationToken cancellationToken) where T : notnull
1 reference to PromptForSelectionAsync
aspire (1)
Interaction\ExtensionInteractionService.cs (1)
325var result = await Backchannel.PromptForSelectionAsync(StringUtils.RemoveMarkup(promptText), choices, choiceFormatter, _cancellationToken).ConfigureAwait(false);