10 writes to MaxRequestBodySize
IIS.Tests (9)
MaxRequestBodySizeTests.cs (8)
85
}, LoggerFactory, new IISServerOptions {
MaxRequestBodySize
= maxRequestSize }))
115
}, LoggerFactory, new IISServerOptions {
MaxRequestBodySize
= 0 }))
142
}, LoggerFactory, new IISServerOptions {
MaxRequestBodySize
= 0 }))
168
}, LoggerFactory, new IISServerOptions {
MaxRequestBodySize
= 0 }))
191
}, LoggerFactory, new IISServerOptions {
MaxRequestBodySize
= 0 }))
215
}, LoggerFactory, new IISServerOptions {
MaxRequestBodySize
= 0 }))
291
}, LoggerFactory, new IISServerOptions {
MaxRequestBodySize
= maxRequestSize }))
328
}, LoggerFactory, new IISServerOptions {
MaxRequestBodySize
= 0 }))
Utilities\TestServer.cs (1)
159
services.Configure<IISServerOptions>(options => options.
MaxRequestBodySize
= _options.MaxRequestBodySize);
Microsoft.AspNetCore.Server.IIS (1)
WebHostBuilderIISExtensions.cs (1)
54
options.
MaxRequestBodySize
= iisConfigData.maxRequestBodySize;
4 references to MaxRequestBodySize
IIS.Tests (2)
MaxRequestBodySizeTests.cs (1)
335
"Content-Length: " + (new IISServerOptions().
MaxRequestBodySize
+ 1),
Utilities\TestServer.cs (1)
159
services.Configure<IISServerOptions>(options => options.MaxRequestBodySize = _options.
MaxRequestBodySize
);
Microsoft.AspNetCore.Server.IIS (2)
Core\IISHttpContext.cs (1)
292
MaxRequestBodySize = _options.
MaxRequestBodySize
;
Core\IISHttpServer.cs (1)
88
if (_options.
MaxRequestBodySize
> _options.IisMaxRequestSizeLimit)