4 writes to MaxLength
Aspire.Hosting.Tests (2)
InteractionServiceTests.cs (2)
300
var input = new InteractionInput { Label = "Value", InputType = inputType,
MaxLength
= maxLength };
402
MaxLength
= length
Stress.AppHost (2)
InteractionCommands.cs (2)
133
new InteractionInput { InputType = InputType.Text, Label = "Name", Placeholder = "Enter name", Required = true,
MaxLength
= 50 },
134
new InteractionInput { InputType = InputType.SecretText, Label = "Password", Placeholder = "Enter password", Required = true,
MaxLength
= 20 },
3 references to MaxLength
Aspire.Hosting (3)
Dashboard\DashboardService.cs (2)
146
if (input.
MaxLength
!= null)
148
dto.MaxLength = input.
MaxLength
.Value;
InteractionService.cs (1)
267
var maxLength = InteractionHelpers.GetMaxLength(input.
MaxLength
);