OutputCacheProfile.VaryByCustom 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定 VaryByCustom 屬性。
public:
property System::String ^ VaryByCustom { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("varyByCustom")]
public string VaryByCustom { get; set; }
[<System.Configuration.ConfigurationProperty("varyByCustom")>]
member this.VaryByCustom : string with get, set
Public Property VaryByCustom As String
屬性值
VaryByCustom 值。
- 屬性
範例
下列程式碼範例示範如何使用 VaryByCustom 屬性。
// Get the current VaryByCustom.
String varyByCustomValue =
outputCacheProfile.VaryByCustom;
// Set the VaryByCustom.
outputCacheProfile.VaryByCustom =
string.Empty;
' Get the current VaryByCustom.
Dim varyByCustomValue As String = _
outputCacheProfile.VaryByCustom
' Set the VaryByCustom property.
outputCacheProfile.VaryByCustom = _
String.Empty
備註
VaryByCustom可以是任何代表自定義輸出快取需求的文字。 如果輸入自定義字串,您必須覆寫 GetVaryByCustomString 應用程式 Global.asax 檔案中的 方法。
注意
這些VaryByCustom設定與指示詞的 @ OutputCache
屬性所使用的VaryByCustom
設定相同。