14 references to SecretText
Aspire.Hosting (3)
ApplicationModel\ParameterResource.cs (1)
119InputType = Secret ? InputType.SecretText : InputType.Text,
Dashboard\DashboardService.cs (1)
209Aspire.Hosting.InputType.SecretText => Aspire.DashboardService.Proto.V1.InputType.SecretText,
InteractionService.cs (1)
269case InputType.SecretText:
Aspire.Hosting.Azure (1)
Provisioning\Internal\DefaultProvisioningContextProvider.cs (1)
109new InteractionInput { Name = SubscriptionIdName, InputType = InputType.SecretText, Label = AzureProvisioningStrings.SubscriptionIdLabel, Placeholder = AzureProvisioningStrings.SubscriptionIdPlaceholder, Required = true },
Aspire.Hosting.Azure.Tests (2)
AzureDeployerTests.cs (1)
93Assert.Equal(InputType.SecretText, input.InputType);
DefaultProvisioningContextProviderTests.cs (1)
305Assert.Equal(InputType.SecretText, input.InputType);
Aspire.Hosting.Tests (6)
AddParameterTests.cs (1)
425Assert.Equal(InputType.SecretText, input.InputType);
InteractionServiceTests.cs (3)
290[InlineData(InputType.SecretText, 10)] 418new InteractionInput { Name = "Password", Label = "Password", InputType = InputType.SecretText }, 631new InteractionInput { Name = "Password", Label = "Password", InputType = InputType.SecretText }
Orchestrator\ParameterProcessorTests.cs (2)
220Assert.Equal(InputType.SecretText, input.InputType); 475Assert.Equal(InputType.SecretText, secretInput.InputType);
Publishers.AppHost (1)
DistributedApplicationBuilderExtensions.cs (1)
126InputType = InputType.SecretText,
Stress.AppHost (1)
InteractionCommands.cs (1)
136new InteractionInput { Name = "Password", InputType = InputType.SecretText, Label = "Password", Placeholder = "Enter password", Required = true, MaxLength = 20 },