Gets a value that indicates whether the StateBag object is case-insensitive.
Assembly: System.Web (in System.Web.dll)
Syntax
true if the StateBag instance is case-insensitive; otherwise, false. The default is false.
<[%$TOPIC/ak8yy4ch_en-us_VS_110_2_0_0_0_0%](False)> _
Protected Overridable ReadOnly Property ViewStateIgnoresCase As [%$TOPIC/ak8yy4ch_en-us_VS_110_2_0_0_0_1%]
[[%$TOPIC/ak8yy4ch_en-us_VS_110_2_0_1_0_0%](false)]
protected virtual [%$TOPIC/ak8yy4ch_en-us_VS_110_2_0_1_0_1%] ViewStateIgnoresCase { get; }
[[%$TOPIC/ak8yy4ch_en-us_VS_110_2_0_2_0_0%](false)]
protected:
virtual property [%$TOPIC/ak8yy4ch_en-us_VS_110_2_0_2_0_1%] ViewStateIgnoresCase {
[%$TOPIC/ak8yy4ch_en-us_VS_110_2_0_2_0_2%] get ();
}
[<[%$TOPIC/ak8yy4ch_en-us_VS_110_2_0_3_0_0%](false)>]
abstract ViewStateIgnoresCase : [%$TOPIC/ak8yy4ch_en-us_VS_110_2_0_3_0_1%] with get
[<[%$TOPIC/ak8yy4ch_en-us_VS_110_2_0_3_0_2%](false)>]
override ViewStateIgnoresCase : [%$TOPIC/ak8yy4ch_en-us_VS_110_2_0_3_0_3%] with get
Property Value
Type: SystemBooleantrue if the StateBag instance is case-insensitive; otherwise, false. The default is false.
Examples
The following example demonstrates how to override the ViewStateIgnoresCase property to 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
// 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;
}
}
Platforms
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.