问题 I am using ASP.net Core 2.0 with MVC. I have a controller action that I want to limit the request size to 1MB. I added the RequestSizeLimit attribute like so: [HttpPost] [Authorize] [RequestSizeLimit(1_000_000)] public async Task<List<ResourceUploadResult>> Upload([FromBody]List<Resource> updatedList){ //.... } When the upload is < 1MB, it works as expected. When it is > 1MB I expected the server to return a status of 413, but instead, the updatedList parameter is null and the action executes