6 references to DefaultKeyLengthLimit
Microsoft.AspNetCore.Components.Endpoints (1)
FormMapping\FormDataMapperOptions.cs (1)
49internal int MaxKeyBufferSize { get; set; } = FormReader.DefaultKeyLengthLimit;
Microsoft.AspNetCore.Http (1)
Features\FormOptions.cs (1)
75public int KeyLengthLimit { get; set; } = FormReader.DefaultKeyLengthLimit;
Microsoft.AspNetCore.Http.Extensions (1)
src\aspnetcore\src\Components\Endpoints\src\FormMapping\FormDataMapperOptions.cs (1)
49internal int MaxKeyBufferSize { get; set; } = FormReader.DefaultKeyLengthLimit;
Microsoft.AspNetCore.Routing (2)
Builder\RoutingEndpointConventionBuilderExtensions.cs (2)
187/// <param name="maxKeySize">The maximum size of the buffer used to read form data keys. Defaults to <see cref="FormReader.DefaultKeyLengthLimit"/></param> 210/// <param name="keyLengthLimit">Limit on the length of individual keys for <c>application/x-www-form-urlencoded</c> forms. For <c>multipart/form-data</c> forms, the length of a key is limited by <paramref name="multipartHeadersLengthLimit"/>. Defaults to <see cref="FormReader.DefaultKeyLengthLimit"/>.</param>
Microsoft.AspNetCore.WebUtilities (1)
FormReader.cs (1)
112public int KeyLengthLimit { get; set; } = DefaultKeyLengthLimit;