HttpApplication.GetVaryByCustomString(HttpContext, String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
提供 VaryByCustom 屬性的全應用程式實作。
public:
virtual System::String ^ GetVaryByCustomString(System::Web::HttpContext ^ context, System::String ^ custom);
public virtual string GetVaryByCustomString (System.Web.HttpContext context, string custom);
abstract member GetVaryByCustomString : System.Web.HttpContext * string -> string
override this.GetVaryByCustomString : System.Web.HttpContext * string -> string
Public Overridable Function GetVaryByCustomString (context As HttpContext, custom As String) As String
參數
- context
- HttpContext
包含目前 Web 要求之相關資訊的 HttpContext 物件。
- custom
- String
自訂字串,指定哪一個快取回應是用於回應目前的要求。
傳回
如果 custom
參數的值是 "browser"
,則為瀏覽器的 Type,否則為 null
。
備註
您可以覆寫 GetVaryByCustomString 以新增方法,以根據目前的要求計算自定義不同值。 實作必須針對無法辨識的自定義值呼叫基類。 如需詳細資訊,請參閱 如何:使用自定義字串快取頁面的版本。