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