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