16 references to SecretText
Aspire.Hosting (4)
ApplicationModel\ParameterResource.cs (1)
142InputType = Secret ? InputType.SecretText : InputType.Text,
Dashboard\DashboardService.cs (2)
229Aspire.Hosting.InputType.SecretText => Aspire.DashboardService.Proto.V1.InputType.SecretText, 242Aspire.DashboardService.Proto.V1.InputType.SecretText => InputType.SecretText,
InteractionService.cs (1)
397case InputType.SecretText:
Aspire.Hosting.Azure (2)
Provisioning\Internal\PublishModeProvisioningContextProvider.cs (2)
188InputType = InputType.SecretText, 287InputType = InputType.SecretText,
Aspire.Hosting.Tests (8)
AddParameterTests.cs (1)
426Assert.Equal(InputType.SecretText, input.InputType);
InteractionServiceTests.cs (4)
429[InlineData(InputType.SecretText, 10)] 561new InteractionInput { Name = "Password", Label = "Password", InputType = InputType.SecretText }, 774new InteractionInput { Name = "Password", Label = "Password", InputType = InputType.SecretText } 788new InputDto("Password", "testpass", InputType.SecretText)
Orchestrator\ParameterProcessorTests.cs (3)
231Assert.Equal(InputType.SecretText, input.InputType); 492Assert.Equal(InputType.SecretText, secretInput.InputType); 994Assert.Equal(InputType.SecretText, inputInteraction.Inputs["secretParam"].InputType);
Publishers.AppHost (1)
DistributedApplicationBuilderExtensions.cs (1)
158InputType = InputType.SecretText,
Stress.AppHost (1)
InteractionCommands.cs (1)
239new InteractionInput { Name = "Password", InputType = InputType.SecretText, Label = "Password", Placeholder = "Enter password", Required = true, MaxLength = 20 },