1 write to _tagNameLookupArray
System.Web (1)
UI\HTMLTextWriter.cs (1)
127_tagNameLookupArray = new TagInformation[(int)HtmlTextWriterTag.Xml + 1];
9 references to _tagNameLookupArray
System.Web (9)
UI\HTMLTextWriter.cs (9)
623if ((int)key < _tagNameLookupArray.Length) { 624_tagNameLookupArray[(int)key] = new TagInformation(name, type, endTag); 676if (_tagIndex < 0 || _tagIndex >= _tagNameLookupArray.Length) { 683_tagName = _tagNameLookupArray[_tagIndex].name; 696Debug.Assert(_tagIndex >= 0 && _tagIndex < _tagNameLookupArray.Length); 859if (tagIndex >= 0 && tagIndex < _tagNameLookupArray.Length) 860return _tagNameLookupArray[tagIndex].name; 998TagInformation tagInfo = _tagNameLookupArray[_tagIndex]; 1116if (_tagNameLookupArray[_tagIndex].tagType == TagType.Inline) {