次のアクションメソッドがあります。
[HttpGet, Authorize, OutputCache(Duration = 60, VaryByHeader = "Cookie", Location = OutputCacheLocation.Any)]
public ActionResult Index()
しかし、リクエストを行うと、次のヘッダーが発行されます。
Cache-Control: private, max-age=60, s-maxage=0
Content-Type: text/html; charset=utf-8
Content-Encoding: gzip
Expires: Fri, 22 Jun 2012 09:56:32 GMT
Last-Modified: Fri, 22 Jun 2012 09:55:32 GMT
Vary: Accept-Encoding
Vary に Cookie ヘッダーが含まれていないのはなぜですか?
私はOutputCache
設定の多くのバリエーションを試しましたが、役に立ちませんでした:(