2 writes to _endTags
System.Web (2)
UI\HTMLTextWriter.cs (2)
928_endTags = new TagStackEntry[16]; 933_endTags = newArray;
9 references to _endTags
System.Web (9)
UI\HTMLTextWriter.cs (9)
922TagKey = _endTags[_endTagCount].tagKey; 923return _endTags[_endTagCount].endTagText; 927if(_endTags == null) { 930else if (_endTagCount >= _endTags.Length) { 931TagStackEntry[] newArray = new TagStackEntry[_endTags.Length * 2]; 932Array.Copy(_endTags, newArray, _endTags.Length); 935_endTags[_endTagCount].tagKey = _tagKey; 936_endTags[_endTagCount].endTagText= endTag;