次の方法で共有


PartialCachingAttribute.VaryByCustom プロパティ

出力キャッシュがユーザー コントロールを変更するために使用するカスタム文字列のリストを取得します。

Public ReadOnly Property VaryByCustom As String
[C#]
public string VaryByCustom {get;}
[C++]
public: __property String* get_VaryByCustom();
[JScript]
public function get VaryByCustom() : String;

プロパティ値

カスタム文字列のリスト。

解説

このプロパティに browser を指定すると、ブラウザの種類およびメジャー バージョン番号によりユーザー コントロールが変更されます。このプロパティを使用して、出力キャッシュがユーザー コントロール応答を変更する値も拡張できます。

使用例

 
' Set the PartialCachingAttribute.Duration property to
' 20 seconds and the PartialCachingAttribute.VaryByCustom
' property to browser.
<PartialCaching(20, Nothing, Nothing, "browser")>  _
Public Class ctlSelect
   Inherits UserControl

[C#] 
// Set the PartialCachingAttribute.Duration property to
// 20 seconds and the PartialCachingAttribute.VaryByCustom
// property to browser.
[PartialCaching(20, null, null, "browser")]
public class ctlSelect : UserControl

[C++] 
// Set the PartialCachingAttribute.Duration property to
// 20 seconds and the PartialCachingAttribute.VaryByCustom
// property to browser.
[PartialCaching(20, 0, 0, S"browser")]
public __gc class ctlSelect : public UserControl

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 2000, Windows XP Professional, Windows Server 2003 ファミリ

参照

PartialCachingAttribute クラス | PartialCachingAttribute メンバ | System.Web.UI 名前空間