8 references to PromptConfirmationAsync
Aspire.Hosting.Tests (6)
InteractionServiceTests.cs (6)
22
var resultTask = interactionService.
PromptConfirmationAsync
("Are you sure?", "Confirmation");
47
var resultTask = interactionService.
PromptConfirmationAsync
("Are you sure?", "Confirmation", cancellationToken: cts.Token);
71
var resultTask1 = interactionService.
PromptConfirmationAsync
("Are you sure?", "Confirmation");
72
var resultTask2 = interactionService.
PromptConfirmationAsync
("Are you sure?", "Confirmation");
114
var resultTask1 = interactionService.
PromptConfirmationAsync
("Are you sure?", "Confirmation");
118
var resultTask2 = interactionService.
PromptConfirmationAsync
("Are you sure?", "Confirmation");
Stress.AppHost (2)
Program.cs (2)
123
var resultTask1 = interactionService.
PromptConfirmationAsync
("Command confirmation", "Are you sure?", cancellationToken: commandContext.CancellationToken);
124
var resultTask2 = interactionService.
PromptConfirmationAsync
("Command confirmation", "Are you really sure?", new MessageBoxInteractionOptions { Intent = MessageIntent.Warning }, cancellationToken: commandContext.CancellationToken);