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