2 implementations of PromptInputAsync
Aspire.Hosting (1)
ApplicationModel\InteractionService.cs (1)
75public 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)
249public 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*/ }); 63var result = await interactionService.PromptInputAsync(