Control.ViewStateIgnoresCase Свойство
Определение
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
Значение свойства
true
, если экземпляр StateBag нечувствителен к регистру; в противном случае — false
.true
if the StateBag instance is case-insensitive; otherwise, false
. Значение по умолчанию — false
.The default is false
.
- Атрибуты
Примеры
В следующем примере показано, как переопределить ViewStateIgnoresCase возвращаемое свойство true
.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.
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
Комментарии
Переопределите этот метод при создании пользовательского серверного элемента управления, сохраняющего состояние представления без учета регистра.Override this method if you create a custom server control that saves its view state without taking case into account. При этом несколько объектов с одним и тем же ключом, но с различными регистрами могут храниться в, StateBag связанном со ViewState свойством.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.