21 references to FormReader
Microsoft.AspNetCore.Components.Endpoints (3)
FormMapping\FormDataMapperOptions.cs (2)
43
internal int MaxCollectionSize { get; set; } =
FormReader
.DefaultValueCountLimit;
49
internal int MaxKeyBufferSize { get; set; } =
FormReader
.DefaultKeyLengthLimit;
FormMapping\FormDataReader.cs (1)
51
public int MaxCollectionSize { get; set; } =
FormReader
.DefaultValueCountLimit;
Microsoft.AspNetCore.Http (3)
Features\FormOptions.cs (3)
65
public int ValueCountLimit { get; set; } =
FormReader
.DefaultValueCountLimit;
72
public int KeyLengthLimit { get; set; } =
FormReader
.DefaultKeyLengthLimit;
79
public int ValueLengthLimit { get; set; } =
FormReader
.DefaultValueLengthLimit;
Microsoft.AspNetCore.Http.Extensions (3)
src\aspnetcore\src\Components\Endpoints\src\FormMapping\FormDataMapperOptions.cs (2)
43
internal int MaxCollectionSize { get; set; } =
FormReader
.DefaultValueCountLimit;
49
internal int MaxKeyBufferSize { get; set; } =
FormReader
.DefaultKeyLengthLimit;
src\aspnetcore\src\Components\Endpoints\src\FormMapping\FormDataReader.cs (1)
51
public int MaxCollectionSize { get; set; } =
FormReader
.DefaultValueCountLimit;
Microsoft.AspNetCore.Mvc.Core (2)
MvcOptions.cs (2)
25
internal const int DefaultMaxModelBindingCollectionSize =
FormReader
.DefaultValueCountLimit;
311
/// <value>The default value is <c>1024</c>, matching <see cref="
FormReader
.DefaultValueCountLimit"/>.</value>
Microsoft.AspNetCore.Routing (5)
Builder\RoutingEndpointConventionBuilderExtensions.cs (5)
185
/// <param name="maxCollectionSize">The maximum number of elements allowed in a form collection. Defaults to <see cref="
FormReader
.DefaultValueCountLimit"/>.</param>
187
/// <param name="maxKeySize">The maximum size of the buffer used to read form data keys. Defaults to <see cref="
FormReader
.DefaultKeyLengthLimit"/></param>
209
/// <param name="valueCountLimit">Limit for the number of form entries to allow. Defaults to <see cref="
FormReader
.DefaultValueCountLimit"/>.</param>
210
/// <param name="keyLengthLimit">Limit on the length of individual keys. Defaults to <see cref="
FormReader
.DefaultKeyLengthLimit"/>.</param>
211
/// <param name="valueLengthLimit">Limit on the length of individual form values. Defaults to <see cref="
FormReader
.DefaultValueLengthLimit"/>.</param>
Microsoft.AspNetCore.WebUtilities (5)
FormReader.cs (5)
47
/// Initializes a new instance of <see cref="
FormReader
"/>.
56
/// Initializes a new instance of <see cref="
FormReader
"/>.
70
/// Initializes a new instance of <see cref="
FormReader
"/>.
79
/// Initializes a new instance of <see cref="
FormReader
"/>.
89
/// Initializes a new instance of <see cref="
FormReader
"/>.