6 references to DefaultKeyLengthLimit
Microsoft.AspNetCore.Components.Endpoints (1)
FormMapping\FormDataMapperOptions.cs (1)
49
internal int MaxKeyBufferSize { get; set; } = FormReader.
DefaultKeyLengthLimit
;
Microsoft.AspNetCore.Http (1)
Features\FormOptions.cs (1)
72
public int KeyLengthLimit { get; set; } = FormReader.
DefaultKeyLengthLimit
;
Microsoft.AspNetCore.Http.Extensions (1)
src\Components\Endpoints\src\FormMapping\FormDataMapperOptions.cs (1)
49
internal int MaxKeyBufferSize { get; set; } = FormReader.
DefaultKeyLengthLimit
;
Microsoft.AspNetCore.Routing (2)
Builder\RoutingEndpointConventionBuilderExtensions.cs (2)
173
/// <param name="maxKeySize">The maximum size of the buffer used to read form data keys. Defaults to <see cref="FormReader.
DefaultKeyLengthLimit
"/></param>
196
/// <param name="keyLengthLimit">Limit on the length of individual keys. Defaults to <see cref="FormReader.
DefaultKeyLengthLimit
"/>.</param>
Microsoft.AspNetCore.WebUtilities (1)
FormReader.cs (1)
112
public int KeyLengthLimit { get; set; } =
DefaultKeyLengthLimit
;