3 implementations of MaxRequestBodySize
Microsoft.AspNetCore.Server.HttpSys (1)
RequestProcessing\RequestContext.FeatureCollection.cs (1)
591long? IHttpMaxRequestBodySizeFeature.MaxRequestBodySize
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpContext.FeatureCollection.cs (1)
441long? IHttpMaxRequestBodySizeFeature.MaxRequestBodySize
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.FeatureCollection.cs (1)
200long? IHttpMaxRequestBodySizeFeature.MaxRequestBodySize
5 writes to MaxRequestBodySize
Binding.Http.IntegrationTests (1)
MtomBindingTestHelper.cs (1)
54context.Features.Get<IHttpMaxRequestBodySizeFeature>().MaxRequestBodySize = 5_368_709_120;
Microsoft.AspNetCore.Mvc.Core (2)
Filters\DisableRequestSizeLimitFilter.cs (1)
55maxRequestBodySizeFeature.MaxRequestBodySize = null;
Filters\RequestSizeLimitFilter.cs (1)
57maxRequestBodySizeFeature.MaxRequestBodySize = Bytes;
Microsoft.AspNetCore.Routing (1)
EndpointRoutingMiddleware.cs (1)
366maxRequestBodySizeFeature.MaxRequestBodySize = maxRequestBodySize;
Microsoft.AspNetCore.Server.IISIntegration (1)
IISMiddleware.cs (1)
132bodySizeFeature.MaxRequestBodySize = null;
6 references to MaxRequestBodySize
Microsoft.AspNetCore.Http.Features (1)
IHttpMaxRequestBodySizeFeature.cs (1)
12/// Indicates whether <see cref="MaxRequestBodySize"/> is read-only.
Microsoft.AspNetCore.Mvc.Core (4)
Filters\DisableRequestSizeLimitFilter.cs (2)
10/// A filter that sets <see cref="IHttpMaxRequestBodySizeFeature.MaxRequestBodySize"/> 26/// Sets the <see cref="IHttpMaxRequestBodySizeFeature.MaxRequestBodySize"/>
Filters\RequestSizeLimitFilter.cs (2)
11/// A filter that sets the <see cref="IHttpMaxRequestBodySizeFeature.MaxRequestBodySize"/> 29/// Sets the <see cref="IHttpMaxRequestBodySizeFeature.MaxRequestBodySize"/> to <see cref="Bytes"/>.
Microsoft.AspNetCore.RequestDecompression (1)
RequestDecompressionMiddleware.cs (1)
63?? context.Features.Get<IHttpMaxRequestBodySizeFeature>()?.MaxRequestBodySize;