HttpCacheVaryByHeaders.UserLanguage 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,指出 ASP.NET 輸出快取的快取回應是否依 Accept-Language
標頭而有所不同,並且將此值附加至外送 Vary
HTTP 標頭。
public:
property bool UserLanguage { bool get(); void set(bool value); };
public bool UserLanguage { get; set; }
member this.UserLanguage : bool with get, set
Public Property UserLanguage As Boolean
屬性值
當 ASP.NET 輸出快取依 true
標頭而有所不同,並將它附加至傳送給用戶端的 Accept-Language
HTTP 標頭時,則為 Vary
,否則為 false
。 預設值是 false
。
範例
下列程式碼範例示範只有在 屬性為 true
時 UserLanguage ,才會執行某些動作。
Response.Cache.VaryByHeaders.UserLanguage = true;
Response.Cache.VaryByHeaders.UserLanguage = True
備註
Vary
標頭會指出伺服器用來判斷要傳送多個快取回應以回應用戶端要求的要求標頭欄位。 欄位 Accept-Language
會指定伺服器會根據用戶端可接受的語言選取回應。
如需詳細資訊,請參閱 RFC 2616:超文字傳輸通訊協定 -- HTTP/1.1,可在 World Wide Web Consortium (W3C) 網站上取得。 如需完整詳細資料,請參閱一節。