5 instantiations of HtmlControlPersistable
System.Web (5)
UI\HtmlControlPersistable.cs (2)
14
internal static readonly HtmlControlPersistableAttribute Yes = new
HtmlControlPersistableAttribute
(true);
15
internal static readonly HtmlControlPersistableAttribute No = new
HtmlControlPersistableAttribute
(false);
UI\HtmlControls\HtmlContainerControl.cs (2)
67
HtmlControlPersistable
(false),
107
HtmlControlPersistable
(false),
UI\HtmlControls\HtmlSelect.cs (1)
352
HtmlControlPersistable
(false),
6 references to HtmlControlPersistable
System.Web (6)
UI\ControlBuilder.cs (1)
3106
if (propDesc.Attributes.Contains(
HtmlControlPersistableAttribute
.No)) {
UI\HtmlControlPersistable.cs (5)
14
internal static readonly
HtmlControlPersistableAttribute
Yes = new HtmlControlPersistableAttribute(true);
15
internal static readonly
HtmlControlPersistableAttribute
No = new HtmlControlPersistableAttribute(false);
16
internal static readonly
HtmlControlPersistableAttribute
Default = Yes;
34
HtmlControlPersistableAttribute
other = obj as
HtmlControlPersistableAttribute
;