HTTP HEAD 请求和 System.Web.Mvc.FileResult

发布于 2024-10-15 23:06:21 字数 264 浏览 2 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

姜生凉生 2024-10-22 23:06:21

结果被迫对您的操作代码的请求做出反应。如果您不对不同的请求类型(例如,[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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文