2 implementations of PromptInputAsync
Aspire.Hosting (1)
InteractionService.cs (1)
74
public async Task<InteractionResult<InteractionInput>>
PromptInputAsync
(string title, string? message, string inputLabel, string placeHolder, InputsDialogInteractionOptions? options = null, CancellationToken cancellationToken = default)
Aspire.Hosting.Tests (1)
TestInteractionService.cs (1)
23
public Task<InteractionResult<InteractionInput>>
PromptInputAsync
(string title, string? message, string inputLabel, string placeHolder, InputsDialogInteractionOptions? options = null, CancellationToken cancellationToken = default)
4 references to PromptInputAsync
Stress.AppHost (4)
InteractionCommands.cs (4)
57
_ = await interactionService.
PromptInputAsync
("Text <strong>request</strong>", "Provide **your** name", "<strong>Name</strong>", "Enter <strong>your</strong> name");
58
_ = await interactionService.
PromptInputAsync
("Text <strong>request</strong>", "Provide **your** name", "<strong>Name</strong>", "Enter <strong>your</strong> name", new InputsDialogInteractionOptions { EnableMessageMarkdown = true });
59
_ = await interactionService.
PromptInputAsync
("Text <strong>request</strong>", "Multiline 1\r\n\r\nMultiline 2", "<strong>Name</strong>", "Enter <strong>your</strong> name", new InputsDialogInteractionOptions { EnableMessageMarkdown = true });
66
var result = await interactionService.
PromptInputAsync
(