.net core 文件上传大小的配置

  • A+
所属分类:.NET技术
摘要

1.iis下进程内托管模型需要设置iis请求大小。2.iis下进程外托管模型除了设置iis请求大小还需要设置FormOptions

1.iis下进程内托管模型需要设置iis请求大小。

.net core 文件上传大小的配置

2.iis下进程外托管模型除了设置iis请求大小还需要设置FormOptions

       services.Configure<FormOptions>(x =>             {                 x.ValueLengthLimit = int.MaxValue;                 x.MultipartBodyLengthLimit = int.MaxValue;                 x.MemoryBufferThreshold = int.MaxValue;             });

3.kestrel下只需设置FormOptions