Control.ViewStateIgnoresCase プロパティ

定義

StateBag オブジェクトが大文字小文字を区別しないかどうかを示す値を取得します。

protected:
 virtual property bool ViewStateIgnoresCase { bool get(); };
[System.ComponentModel.Browsable(false)]
protected virtual bool ViewStateIgnoresCase { get; }
[<System.ComponentModel.Browsable(false)>]
member this.ViewStateIgnoresCase : bool
Protected Overridable ReadOnly Property ViewStateIgnoresCase As Boolean

プロパティ値

StateBag インスタンスが大文字小文字を区別しない場合は true。それ以外の場合は false。 既定値は、false です。

属性

次の例では、 プロパティをオーバーライドして を ViewStateIgnoresCase 返す true方法を示します。

// Override the ViewStateIgnoresCase property to allow the same
// entries with different casing to be stored in the control's
// ViewState property.
protected override bool ViewStateIgnoresCase
{
        get
        { 
                return true; 
        }
}
' Override the ViewStateIgnoresCase property to allow the same
' entries with different casing to be stored in the control's
' ViewState property.
Overrides Protected ReadOnly Property ViewStateIgnoresCase As Boolean
   Get
      Return True
   End Get
End Property

注釈

大文字と小文字を区別せずにビューステートを保存するカスタム サーバー コントロールを作成する場合は、このメソッドをオーバーライドします。 同じキーを持ち、大文字と小文字が異なる複数のオブジェクトを、 プロパティに関連付ViewStateけられた にStateBag格納できます。

適用対象

こちらもご覧ください