Control.ViewStateIgnoresCase プロパティ
StateBag オブジェクトが大文字小文字を区別しないかどうかを示す値を取得します。
Protected Overridable ReadOnly Property ViewStateIgnoresCase As _
Boolean
[C#]
protected virtual bool ViewStateIgnoresCase {get;}
[C++]
protected: __property virtual bool get_ViewStateIgnoresCase();
[JScript]
protected function get ViewStateIgnoresCase() : Boolean;
プロパティ値
StateBag インスタンスが大文字小文字を区別しない場合は true 。それ以外の場合は false 。既定値は true です。
解説
大文字小文字を区別し、ビューステートを保存するカスタム サーバー コントロールを作成する場合にはこのメソッドをオーバーライドします。これにより、キーが同じで大文字小文字が異なる複数のオブジェクトを、 ViewState プロパティに関連付けられている StateBag に格納できるようになります。
使用例
[Visual Basic] true を返すように ViewStatIgnoresCase プロパティをオーバーライドする例を次に示します。
' 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
[C#, C++, JScript] C#、C++、および JScript のサンプルはありません。Visual Basic のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 2000, Windows XP Professional, Windows Server 2003 ファミリ
参照
Control クラス | Control メンバ | System.Web.UI 名前空間 | StateBag | ViewState