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)
922
TagKey =
_endTags
[_endTagCount].tagKey;
923
return
_endTags
[_endTagCount].endTagText;
927
if(
_endTags
== null) {
930
else if (_endTagCount >=
_endTags
.Length) {
931
TagStackEntry[] newArray = new TagStackEntry[
_endTags
.Length * 2];
932
Array.Copy(
_endTags
, newArray,
_endTags
.Length);
935
_endTags
[_endTagCount].tagKey = _tagKey;
936
_endTags
[_endTagCount].endTagText= endTag;