15 references to SecretText
Aspire.Hosting (4)
ApplicationModel\ParameterResource.cs (1)
119
InputType = Secret ? InputType.
SecretText
: InputType.Text,
Dashboard\DashboardService.cs (2)
229
Aspire.Hosting.InputType.
SecretText
=> Aspire.DashboardService.Proto.V1.InputType.SecretText,
242
Aspire.DashboardService.Proto.V1.InputType.SecretText => InputType.
SecretText
,
InteractionService.cs (1)
397
case InputType.
SecretText
:
Aspire.Hosting.Azure (2)
Provisioning\Internal\PublishModeProvisioningContextProvider.cs (2)
189
InputType = InputType.
SecretText
,
288
InputType = InputType.
SecretText
,
Aspire.Hosting.Tests (7)
AddParameterTests.cs (1)
425
Assert.Equal(InputType.
SecretText
, input.InputType);
InteractionServiceTests.cs (4)
428
[InlineData(InputType.
SecretText
, 10)]
560
new InteractionInput { Name = "Password", Label = "Password", InputType = InputType.
SecretText
},
773
new InteractionInput { Name = "Password", Label = "Password", InputType = InputType.
SecretText
}
787
new InputDto("Password", "testpass", InputType.
SecretText
)
Orchestrator\ParameterProcessorTests.cs (2)
222
Assert.Equal(InputType.
SecretText
, input.InputType);
477
Assert.Equal(InputType.
SecretText
, secretInput.InputType);
Publishers.AppHost (1)
DistributedApplicationBuilderExtensions.cs (1)
157
InputType = InputType.
SecretText
,
Stress.AppHost (1)
InteractionCommands.cs (1)
238
new InteractionInput { Name = "Password", InputType = InputType.
SecretText
, Label = "Password", Placeholder = "Enter password", Required = true, MaxLength = 20 },