8 references to DefaultValueCountLimit
Microsoft.AspNetCore.Components.Endpoints (1)
FormMapping\FormDataMapperOptions.cs (1)
43internal int MaxCollectionSize { get; set; } = FormReader.DefaultValueCountLimit;
Microsoft.AspNetCore.Http (1)
Features\FormOptions.cs (1)
65public int ValueCountLimit { get; set; } = FormReader.DefaultValueCountLimit;
Microsoft.AspNetCore.Http.Extensions (1)
src\Components\Endpoints\src\FormMapping\FormDataMapperOptions.cs (1)
43internal int MaxCollectionSize { get; set; } = FormReader.DefaultValueCountLimit;
Microsoft.AspNetCore.Mvc.Core (2)
MvcOptions.cs (2)
25internal const int DefaultMaxModelBindingCollectionSize = FormReader.DefaultValueCountLimit; 311/// <value>The default value is <c>1024</c>, matching <see cref="FormReader.DefaultValueCountLimit"/>.</value>
Microsoft.AspNetCore.Routing (2)
Builder\RoutingEndpointConventionBuilderExtensions.cs (2)
170/// <param name="maxCollectionSize">The maximum number of elements allowed in a form collection. Defaults to <see cref="FormReader.DefaultValueCountLimit"/>>.</param> 194/// <param name="valueCountLimit">Limit for the number of form entries to allow. Defaults to <see cref="FormReader.DefaultValueCountLimit"/>.</param>
Microsoft.AspNetCore.WebUtilities (1)
FormReader.cs (1)
107public int ValueCountLimit { get; set; } = DefaultValueCountLimit;