2 implementations of PromptConfirmationAsync
Aspire.Hosting (1)
InteractionService.cs (1)
34public async Task<InteractionResult<bool>> PromptConfirmationAsync(string title, string message, MessageBoxInteractionOptions? options = null, CancellationToken cancellationToken = default)
Aspire.Hosting.Tests (1)
TestInteractionService.cs (1)
18public Task<InteractionResult<bool>> PromptConfirmationAsync(string title, string message, MessageBoxInteractionOptions? options = null, CancellationToken cancellationToken = default)
1 reference to PromptConfirmationAsync
Stress.AppHost (1)
InteractionCommands.cs (1)
18var resultTask1 = interactionService.PromptConfirmationAsync("Command confirmation", "Are you sure?", cancellationToken: commandContext.CancellationToken);