本文介绍了如何将Expires响应标头添加到WebAPI Action响应?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我非常确定 Expires是有效的HTTP响应标头类型。但是,当我尝试在代码中进行设置时:(这在ActionFilter.OnActionExecuted方法中)
I'm pretty sure that "Expires" is valid HTTP Response Header type. But when I try to set it in my code: (this is in an ActionFilter.OnActionExecuted method)
actionExecutedContext.Response.Headers.Add("Expires", (DateTime.Now + Timespan.FromDays(7)).ToString("R"));
我最终遇到一个例外:
推荐答案
Expires是一个内容标头。改为尝试以下操作:
Expires is a content header. Try this instead:
actionExecutedContext.Response.Content.Headers.Expires = DateTimeOffset.Now.AddDays(7);
这篇关于如何将Expires响应标头添加到WebAPI Action响应?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!