为自定义 httphandler 添加 web.config 静态内容设置

发布于 2024-10-20 16:08:22 字数 700 浏览 3 评论 0原文

我有一个自定义的 httphandler,它提供来自虚拟文件系统的静态文件。如果我像下面一样配置静态内容部分,我希望这些设置应用于我通过处理程序提供的静态文件。我想我需要将设置添加到我自己的响应中,或者还有其他方法吗?我的处理程序实现了 IHttpHandler 接口。

  <location path="Storage">
    <system.webServer>
      <handlers>
        <clear />
        <add name="StaticFile" path="*.jpg" verb="*" type="Stormbreaker.Web.StaticFileHandler, Stormbreaker" />
      </handlers>
      <staticContent>
        <clientCache httpExpires="Sun, 29 Mar 2020 00:00:00 GMT" cacheControlMode="UseExpires" />
        <mimeMap fileExtension=".jpg" mimeType="image/jpeg" />
      </staticContent>
    </system.webServer>
  </location>

I have a custom httphandler that serves static files from a virtual file system. If I configure the static content section like below I would like these settings to apply to the static files i serve via the handler. I guess I need to add the settings to the response my self or is there another way? My handler implements the IHttpHandler interface.

  <location path="Storage">
    <system.webServer>
      <handlers>
        <clear />
        <add name="StaticFile" path="*.jpg" verb="*" type="Stormbreaker.Web.StaticFileHandler, Stormbreaker" />
      </handlers>
      <staticContent>
        <clientCache httpExpires="Sun, 29 Mar 2020 00:00:00 GMT" cacheControlMode="UseExpires" />
        <mimeMap fileExtension=".jpg" mimeType="image/jpeg" />
      </staticContent>
    </system.webServer>
  </location>

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

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

发布评论

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

评论(1

缺⑴份安定 2024-10-27 16:08:22

我相信 staticContent 仅影响 IIS 附带的 StaticFileHandler。 IIS 无法知道您的处理程序是否提供静态文件,因此您需要在处理程序中自行添加这些标头,但您可能希望使用其自己的部分从 web.config 对其进行配置,以便将来进行更改。

I believe that staticContent only affects the StaticFileHandler which ships with IIS. IIS have no way of knowing that your handler serves static files, so you would need to add those headers your self in your handler, but you might want to make it configurable from your web.config with it's own section for future changes.

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