2 implementations of ConfirmAsync
aspire (1)
Backchannel\ExtensionBackchannel.cs (1)
561public async Task<bool> ConfirmAsync(string promptText, bool defaultValue, CancellationToken cancellationToken)
Aspire.Cli.Tests (1)
TestServices\TestExtensionBackchannel.cs (1)
190public Task<bool> ConfirmAsync(string promptText, bool defaultValue = true, CancellationToken cancellationToken = default)
1 reference to ConfirmAsync
aspire (1)
Interaction\ExtensionInteractionService.cs (1)
281var result = await Backchannel.ConfirmAsync(StringUtils.RemoveMarkup(promptText), binding?.DefaultValue ?? false, _cancellationToken).ConfigureAwait(false);