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