1.iis下进程内托管模型需要设置iis请求大小。
2.iis下进程外托管模型除了设置iis请求大小还需要设置FormOptions
services.Configure<FormOptions>(x => { x.ValueLengthLimit = int.MaxValue; x.MultipartBodyLengthLimit = int.MaxValue; x.MemoryBufferThreshold = int.MaxValue; });
3.kestrel下只需设置FormOptions