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