HttpCachePolicy.SetVaryByCustom(String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指定用來區分快取輸出回應的自訂文字字串。
public:
void SetVaryByCustom(System::String ^ custom);
public void SetVaryByCustom (string custom);
member this.SetVaryByCustom : string -> unit
Public Sub SetVaryByCustom (custom As String)
參數
- custom
- String
可以區分快取輸出的文字字串。
例外狀況
custom
為 null
。
範例
下列程式碼範例示範如何將自訂不同字串設定為 「Accept-Charset」,這會導致源伺服器的快取選擇數個快取回應的其中一個,視瀏覽器 Accept-Charset
的標頭而定。
Response.Cache.SetVaryByCustom("Accept-Charset");
Response.Cache.SetVaryByCustom("Accept-Charset")
備註
SetVaryByCustom.NET Framework 3.5 版引進。 如需詳細資訊,請參閱版本和相依性。