3 implementations of PromptMessageBoxAsync
Aspire.Hosting (1)
InteractionService.cs (1)
68
public async Task<InteractionResult<bool>>
PromptMessageBoxAsync
(string title, string message, MessageBoxInteractionOptions? options = null, CancellationToken cancellationToken = default)
Aspire.Hosting.Azure.Tests (1)
tests\Shared\TestInteractionService.cs (1)
58
public Task<InteractionResult<bool>>
PromptMessageBoxAsync
(string title, string message, MessageBoxInteractionOptions? options = null, CancellationToken cancellationToken = default)
Aspire.Hosting.Tests (1)
tests\Shared\TestInteractionService.cs (1)
58
public Task<InteractionResult<bool>>
PromptMessageBoxAsync
(string title, string message, MessageBoxInteractionOptions? options = null, CancellationToken cancellationToken = default)
9 references to PromptMessageBoxAsync
Aspire.Hosting.Azure.Kusto (1)
AzureKustoBuilderExtensions.cs (1)
396
_ = await interactionService.
PromptMessageBoxAsync
(
Aspire.Hosting.Foundry (2)
HostedAgent\HostedAgentBuilderExtension.cs (2)
189
await interactionService.
PromptMessageBoxAsync
(
205
await interactionService.
PromptMessageBoxAsync
(
Stress.AppHost (6)
InteractionCommands.cs (6)
20
var resultTask2 = interactionService.
PromptMessageBoxAsync
("Command confirmation", "Are you really sure?", new MessageBoxInteractionOptions { Intent = MessageIntent.Warning, ShowSecondaryButton = true }, cancellationToken: commandContext.CancellationToken);
29
_ = interactionService.
PromptMessageBoxAsync
("Command executed", "The command successfully executed.", new MessageBoxInteractionOptions { Intent = MessageIntent.Success, PrimaryButtonText = "Yeah!" });
54
_ = interactionService.
PromptMessageBoxAsync
("Success <strong>bar</strong>", "The **command** successfully executed.", new MessageBoxInteractionOptions { Intent = MessageIntent.Success });
55
_ = interactionService.
PromptMessageBoxAsync
("Success <strong>bar</strong>", "The **command** successfully executed.", new MessageBoxInteractionOptions { Intent = MessageIntent.Success, EnableMessageMarkdown = true });
56
_ = interactionService.
PromptMessageBoxAsync
("Success <strong>bar</strong>", "Multiline 1\r\n\r\nMultiline 2", new MessageBoxInteractionOptions { Intent = MessageIntent.Success, EnableMessageMarkdown = true });
537
return interactionService.
PromptMessageBoxAsync
(