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)
317var resultTask = interactionService.PromptInputAsync( 364var resultTask = interactionService.PromptInputAsync(
InteractionServiceTests.cs (7)
279var resultTask = interactionService.PromptInputAsync( 316var resultTask = interactionService.PromptInputAsync("Please provide", "please", input); 339var resultTask = interactionService.PromptInputAsync("Please provide", "please", input); 362var resultTask = interactionService.PromptInputAsync("Please provide", "please", input); 383var resultTask = interactionService.PromptInputAsync("Please provide", "please", input); 406var resultTask = interactionService.PromptInputAsync("Please provide", "please", input); 439var resultTask = interactionService.PromptInputAsync("Please provide", "please", input);