2 implementations of PromptForSelectionAsync
aspire (1)
Backchannel\ExtensionBackchannel.cs (1)
541
public async Task<T>
PromptForSelectionAsync
<T>(string promptText, IEnumerable<T> choices, Func<T, string> choiceFormatter,
Aspire.Cli.Tests (1)
TestServices\TestExtensionBackchannel.cs (1)
182
public 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)
325
var result = await Backchannel.
PromptForSelectionAsync
(StringUtils.RemoveMarkup(promptText), choices, choiceFormatter, _cancellationToken).ConfigureAwait(false);