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)
425Assert.Equal(InputType.SecretText, input.InputType);
InteractionServiceTests.cs (4)
428[InlineData(InputType.SecretText, 10)] 560new InteractionInput { Name = "Password", Label = "Password", InputType = InputType.SecretText }, 773new InteractionInput { Name = "Password", Label = "Password", InputType = InputType.SecretText } 787new InputDto("Password", "testpass", InputType.SecretText)
Orchestrator\ParameterProcessorTests.cs (3)
230Assert.Equal(InputType.SecretText, input.InputType); 491Assert.Equal(InputType.SecretText, secretInput.InputType); 993Assert.Equal(InputType.SecretText, inputInteraction.Inputs["secretParam"].InputType);
Publishers.AppHost (1)
DistributedApplicationBuilderExtensions.cs (1)
157InputType = InputType.SecretText,
Stress.AppHost (1)
InteractionCommands.cs (1)
238new InteractionInput { Name = "Password", InputType = InputType.SecretText, Label = "Password", Placeholder = "Enter password", Required = true, MaxLength = 20 },