2 implementations of PromptInputAsync
Aspire.Hosting (1)
InteractionService.cs (1)
74public 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)
23public 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 }); 66var result = await interactionService.PromptInputAsync(