Control.ViewStateIgnoresCase プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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格納できます。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET