1 write to attrNameLookupArray
System.Web (1)
UI\CssTextWriter.cs (1)
28attrNameLookupArray = new AttributeInformation[(int)HtmlTextWriterStyle.ZIndex + 1];
7 references to attrNameLookupArray
System.Web (7)
UI\CssTextWriter.cs (7)
134if ((int)styleKey >= 0 && (int)styleKey < attrNameLookupArray.Length) { 135return attrNameLookupArray[(int)styleKey].name; 147if ((int)styleKey >= 0 && (int)styleKey < attrNameLookupArray.Length) { 148return attrNameLookupArray[(int)styleKey].encode; 186if ((int)key < attrNameLookupArray.Length) { 187attrNameLookupArray[(int)key] = new AttributeInformation(name, encode, isUrl); 295isUrl = attrNameLookupArray[(int)key].isUrl;