1 write to _attrNameLookupArray
System.Web (1)
UI\HTMLTextWriter.cs (1)
231_attrNameLookupArray = new AttributeInformation[(int)HtmlTextWriterAttribute.VCardName + 1];
10 references to _attrNameLookupArray
System.Web (10)
UI\HTMLTextWriter.cs (10)
641if ((int)key < _attrNameLookupArray.Length) { 642_attrNameLookupArray[(int)key] = new AttributeInformation(name, encode, isUrl); 717if (attributeIndex >= 0 && attributeIndex < _attrNameLookupArray.Length) { 718AttributeInformation info = _attrNameLookupArray[attributeIndex]; 725if (attributeIndex >= 0 && attributeIndex < _attrNameLookupArray.Length) { 726AttributeInformation info = _attrNameLookupArray[attributeIndex]; 805if (0 <= (int)attrKey && (int)attrKey < _attrNameLookupArray.Length) { 806encode = _attrNameLookupArray[(int)attrKey].encode; 833if ((int)attrKey >= 0 && (int)attrKey < _attrNameLookupArray.Length) 834return _attrNameLookupArray[(int)attrKey].name;