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