在ASP.net Web API中设置Owin Cache Control标头

时间:2016-07-01 18:08:47

标签: c# asp.net-web-api owin http-caching

我有以下代码:

public class CacheHeader : OwinMiddleware
{
    public CacheHeader(OwinMiddleware next)
        : base(next)
    {
    }

    public override async Task Invoke(IOwinContext context)
    {
        context.Response.Headers["Cache-Control"] = "no-cache, no-store, must-revalidate";
        context.Response.Headers["Pragma"] = "no-cache";
        context.Response.Headers["Expires"] = "0";
        await Next.Invoke(context);
    }
}

本应将Http缓存控制标题更改为“无存储,无缓存”#34;但是当我在Chrome开发工具中检查它时,我得到以下信息:

Cache-Control:no-cache
Connection:keep-alive
Host:10.0.211.202
Pragma:no-cache

我是否有理由无法将缓存控制中的内容从无缓存更改为无缓存,无存储?

2 个答案:

答案 0 :(得分:1)

只是一个猜测。您是否尝试在next.Invoke()之后设置响应标头?

答案 1 :(得分:1)

在注册Web API之前,请确保介绍您的中间件:

public class Startup
{
    public void Configuration(IAppBuilder app)
    {
        var config = new HttpConfiguration();

        app.Use((context, next) =>
        {
            context.Response.Headers["Cache-Control"] = "no-cache, no-store, must-revalidate";
            context.Response.Headers["Pragma"] = "no-cache";
            context.Response.Headers["Expires"] = "0";

            return next.Invoke();
        });

        app.UseWebApi(config);
    }
}