Implemented interface member:
method
PromptInputAsync
Aspire.Hosting.IInteractionService.PromptInputAsync(System.String, System.String, Aspire.Hosting.InteractionInput, Aspire.Hosting.InputsDialogInteractionOptions, System.Threading.CancellationToken)
10 references to PromptInputAsync
Aspire.Hosting (1)
InteractionService.cs (1)
108return await PromptInputAsync(title, message, new InteractionInput { Name = InteractionHelpers.LabelToName(inputLabel), InputType = InputType.Text, Label = inputLabel, Required = true, Placeholder = placeHolder }, options, cancellationToken).ConfigureAwait(false);
Aspire.Hosting.Tests (9)
Dashboard\DashboardServiceTests.cs (2)
318var resultTask = interactionService.PromptInputAsync( 365var resultTask = interactionService.PromptInputAsync(
InteractionServiceTests.cs (7)
280var resultTask = interactionService.PromptInputAsync( 317var resultTask = interactionService.PromptInputAsync("Please provide", "please", input); 340var resultTask = interactionService.PromptInputAsync("Please provide", "please", input); 363var resultTask = interactionService.PromptInputAsync("Please provide", "please", input); 384var resultTask = interactionService.PromptInputAsync("Please provide", "please", input); 407var resultTask = interactionService.PromptInputAsync("Please provide", "please", input); 440var resultTask = interactionService.PromptInputAsync("Please provide", "please", input);