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