15 references to SecretText
Aspire.Hosting (4)
ApplicationModel\ParameterResource.cs (1)
119InputType = 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)
189InputType = InputType.SecretText, 288InputType = InputType.SecretText,
Aspire.Hosting.Tests (7)
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 (2)
222Assert.Equal(InputType.SecretText, input.InputType); 477Assert.Equal(InputType.SecretText, secretInput.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 },