4 writes to MaxLength
Aspire.Hosting.Tests (2)
InteractionServiceTests.cs (2)
438var input = new InteractionInput { Name = "Value", Label = "Value", InputType = inputType, MaxLength = maxLength }; 548MaxLength = length
Stress.AppHost (2)
InteractionCommands.cs (2)
237new InteractionInput { Name = "Name", InputType = InputType.Text, Label = "Name", Placeholder = "Enter name", Required = true, MaxLength = 50 }, 238new 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)
166if (input.MaxLength != null) 168dto.MaxLength = input.MaxLength.Value;
InteractionService.cs (1)
398var maxLength = InteractionHelpers.GetMaxLength(input.MaxLength);