目前,FileResult返回文件的Stream以及其他响应头.虽然这适用于较小的文件,但较大的文件会生成OutOfMemoryException.
我想要做的是从控制器传输文件,而不是以类似于WebForms中的HttpReponse.TransmitFile的方式在内存中缓冲.
如何实现这一目标?
Response.BufferOutput = false; return File(fileStream,contentType);