4 writes to MaxLength
Aspire.Hosting.Tests (2)
InteractionServiceTests.cs (2)
439var input = new InteractionInput { Name = "Value", Label = "Value", InputType = inputType, MaxLength = maxLength }; 549MaxLength = length
Stress.AppHost (2)
InteractionCommands.cs (2)
238new InteractionInput { Name = "Name", InputType = InputType.Text, Label = "Name", Placeholder = "Enter name", Required = true, MaxLength = 50 }, 239new 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);