2 implementations of PromptInputAsync
Aspire.Hosting (1)
ApplicationModel\InteractionService.cs (1)
75
public async Task<InteractionResult<InteractionInput>>
PromptInputAsync
(string title, string? message, string inputLabel, string placeHolder, InputsDialogInteractionOptions? options = null, CancellationToken cancellationToken = default)
Aspire.Hosting.Tests (1)
VersionChecking\VersionCheckServiceTests.cs (1)
249
public Task<InteractionResult<InteractionInput>>
PromptInputAsync
(string title, string? message, string inputLabel, string placeHolder, InputsDialogInteractionOptions? options = null, CancellationToken cancellationToken = default)
3 references to PromptInputAsync
Stress.AppHost (3)
InteractionCommands.cs (3)
55
_ = await interactionService.
PromptInputAsync
("Text <strong>request</strong>", "Provide <strong>your</strong> name", "<strong>Name</strong>", "Enter <strong>your</strong> name");
56
_ = await interactionService.
PromptInputAsync
("Text <strong>request</strong>", "Provide <strong>your</strong> name", "<strong>Name</strong>", "Enter <strong>your</strong> name", new InputsDialogInteractionOptions { /*EscapeMessageHtml = false*/ });
63
var result = await interactionService.
PromptInputAsync
(