11 references to Text
Aspire.Hosting (3)
Dashboard\DashboardService.cs (1)
199Aspire.Hosting.InputType.Text => Aspire.DashboardService.Proto.V1.InputType.Text,
InteractionService.cs (1)
76return await PromptInputAsync(title, message, new InteractionInput { InputType = InputType.Text, Label = inputLabel, Required = true, Placeholder = placeHolder }, options, cancellationToken).ConfigureAwait(false);
Orchestrator\ParameterProcessor.cs (1)
150InputType = parameter.Secret ? InputType.SecretText : InputType.Text,
Aspire.Hosting.Tests (3)
Dashboard\DashboardServiceTests.cs (1)
318new Aspire.Hosting.InteractionInput { InputType = Aspire.Hosting.InputType.Text, Label = "Input" });
Orchestrator\ParameterProcessorTests.cs (2)
206Assert.Equal(InputType.Text, input.InputType); 212Assert.Equal(InputType.Text, input.InputType);
Publishers.AppHost (3)
DistributedApplicationBuilderExtensions.cs (3)
40InputType = InputType.Text, 47InputType = InputType.Text, 99InputType = InputType.Text,
Stress.AppHost (2)
InteractionCommands.cs (2)
130new InteractionInput { InputType = InputType.Text, Label = "Name", Placeholder = "Enter name", Required = true }, 176InputType = InputType.Text,