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)
623
if ((int)key <
_tagNameLookupArray
.Length) {
624
_tagNameLookupArray
[(int)key] = new TagInformation(name, type, endTag);
676
if (_tagIndex < 0 || _tagIndex >=
_tagNameLookupArray
.Length) {
683
_tagName =
_tagNameLookupArray
[_tagIndex].name;
696
Debug.Assert(_tagIndex >= 0 && _tagIndex <
_tagNameLookupArray
.Length);
859
if (tagIndex >= 0 && tagIndex <
_tagNameLookupArray
.Length)
860
return
_tagNameLookupArray
[tagIndex].name;
998
TagInformation tagInfo =
_tagNameLookupArray
[_tagIndex];
1116
if (
_tagNameLookupArray
[_tagIndex].tagType == TagType.Inline) {