10 writes to MaxRequestBodySize
IIS.Tests (9)
MaxRequestBodySizeTests.cs (8)
86}, LoggerFactory, new IISServerOptions { MaxRequestBodySize = maxRequestSize })) 116}, LoggerFactory, new IISServerOptions { MaxRequestBodySize = 0 })) 143}, LoggerFactory, new IISServerOptions { MaxRequestBodySize = 0 })) 169}, LoggerFactory, new IISServerOptions { MaxRequestBodySize = 0 })) 192}, LoggerFactory, new IISServerOptions { MaxRequestBodySize = 0 })) 216}, LoggerFactory, new IISServerOptions { MaxRequestBodySize = 0 })) 292}, LoggerFactory, new IISServerOptions { MaxRequestBodySize = maxRequestSize })) 329}, LoggerFactory, new IISServerOptions { MaxRequestBodySize = 0 }))
Utilities\TestServer.cs (1)
159services.Configure<IISServerOptions>(options => options.MaxRequestBodySize = _options.MaxRequestBodySize);
Microsoft.AspNetCore.Server.IIS (1)
WebHostBuilderIISExtensions.cs (1)
52options.MaxRequestBodySize = iisConfigData.maxRequestBodySize;
4 references to MaxRequestBodySize
IIS.Tests (2)
MaxRequestBodySizeTests.cs (1)
336"Content-Length: " + (new IISServerOptions().MaxRequestBodySize + 1),
Utilities\TestServer.cs (1)
159services.Configure<IISServerOptions>(options => options.MaxRequestBodySize = _options.MaxRequestBodySize);
Microsoft.AspNetCore.Server.IIS (2)
Core\IISHttpContext.cs (1)
292MaxRequestBodySize = _options.MaxRequestBodySize;
Core\IISHttpServer.cs (1)
87if (_options.MaxRequestBodySize > _options.IisMaxRequestSizeLimit)