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 、 ディレクティブの 属性で VaryByCustom
使用される設定と @ OutputCache
同じです。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET