Implemented interface member:
method
PromptInputAsync
Aspire.Hosting.IInteractionService.PromptInputAsync(System.String, System.String, Aspire.Hosting.InteractionInput, Aspire.Hosting.InputsDialogInteractionOptions, System.Threading.CancellationToken)
8 references to PromptInputAsync
Aspire.Hosting (1)
InteractionService.cs (1)
77return await PromptInputAsync(title, message, new InteractionInput { InputType = InputType.Text, Label = inputLabel, Required = true, Placeholder = placeHolder }, options, cancellationToken).ConfigureAwait(false);
Aspire.Hosting.Tests (7)
Dashboard\DashboardServiceTests.cs (1)
314var resultTask = interactionService.PromptInputAsync(
InteractionServiceTests.cs (6)
179var resultTask = interactionService.PromptInputAsync( 212var resultTask = interactionService.PromptInputAsync("Please provide", "please", input); 231var resultTask = interactionService.PromptInputAsync("Please provide", "please", input); 251var resultTask = interactionService.PromptInputAsync("Please provide", "please", input); 271var resultTask = interactionService.PromptInputAsync("Please provide", "please", input); 301var resultTask = interactionService.PromptInputAsync("Please provide", "please", input);