响应头和 IIS6

发布于 2024-11-14 11:05:57 字数 297 浏览 6 评论 0原文

因此,我尝试迭代 Response.Headers 来进行自定义缓存作业,但是当我触摸该东西时,我收到以下错误:

This operation requires IIS integrated pipeline mode

在 IIS6 中可以这样做吗?有解决方法吗?

var allHeaders = HttpContext.Current.Response.Headers;  
// error thrown as soon as it's accessed

So I'm trying to iterate over Response.Headers for a custom caching job, but I'm getting the following error when I touch the thing:

This operation requires IIS integrated pipeline mode

It this possible to do in IIS6? Is there a workaround?

var allHeaders = HttpContext.Current.Response.Headers;  
// error thrown as soon as it's accessed

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

白色秋天 2024-11-21 11:05:57

AFAIK 除非您在集成模式下运行,否则无法访问 HTTP 响应标头,因为它们是在标准模式下运行时由服务器在请求执行的后期阶段发送的。

AFAIK you cannot access the HTTP response headers unless you are running in integrated mode because they are sent by the server at a later stage of the execution of the request when running in standard mode.

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