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