HTTP HEAD 请求和 System.Web.Mvc.FileResult
我使用 BITS 向名为 Source 的 ASP.NET MVC 控制器方法发出请求,该方法返回 FileResult。我知道 FilePathResult 类型使用 HttpResponse.TransmitFile,但我不知道 HttpResponse.TransmitFile 是否实际上将文件写入响应流,无论请求类型如何。
我的问题是,FileResult 是否仅包含 HEAD 请求的标头信息,还是无论请求类型如何都传输文件?或者,我是否必须自己处理 HEAD 请求?
I'm using BITS to make requests to a ASP.NET MVC controller method named Source that returns a FileResult. I know the type FilePathResult uses HttpResponse.TransmitFile, but I don't know if HttpResponse.TransmitFile actually writes the file to the response stream regardless of the request type.
My question is, does FileResult only include the header information on HEAD requests, or does it transmit the file regardless of the request type? Or, do I have to account for HEAD requests myself?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
结果被迫对您的操作代码的请求做出反应。如果您不对不同的请求类型(例如,[HttpGet]-Attribute、路由中的 HttpMethodConstraints 等)执行任何特殊操作,则该文件将仅写入响应流。
The result is forced to react on a request by YOUR ACTION CODE. If you do not do anything special on different request types (e.g. [HttpGet]-Attribute, HttpMethodConstraints in the Route, etc...) The file is just written to the response stream.