Control.ViewStateIgnoresCase Property

Definition

Gets a value that indicates whether the StateBag object is case-insensitive.

C#
[System.ComponentModel.Browsable(false)]
protected virtual bool ViewStateIgnoresCase { get; }

Property Value

true if the StateBag instance is case-insensitive; otherwise, false. The default is false.

Attributes

Examples

The following example demonstrates how to override the ViewStateIgnoresCase property to return true.

C#
// 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; 
        }
}

Remarks

Override this method if you create a custom server control that saves its view state without taking case into account. When you do so multiple objects with the same key, but with different casing, can be stored in the StateBag associated with the ViewState property.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also