3 writes to attributeCount
System.Runtime.Serialization (3)
System\Xml\XmlBaseWriter.cs (3)
1915
this.
attributeCount
= 0;
2004
attributeCount
--;
2042
attributeCount
++;
7 references to attributeCount
System.Runtime.Serialization (7)
System\Xml\XmlBaseWriter.cs (7)
1996
while (
attributeCount
> 0)
1998
XmlAttribute attribute = attributes[
attributeCount
- 1];
2027
else if (attributes.Length ==
attributeCount
)
2029
XmlAttribute[] newAttributes = new XmlAttribute[
attributeCount
* 2];
2030
Array.Copy(attributes, newAttributes,
attributeCount
);
2033
XmlAttribute attribute = attributes[
attributeCount
];
2037
attributes[
attributeCount
] = attribute;