3 writes to _attributeCount
System.Private.DataContractSerialization (3)
System\Xml\XmlBaseWriter.cs (3)
1968
_attributeCount
= 0;
2057
_attributeCount
--;
2095
_attributeCount
++;
7 references to _attributeCount
System.Private.DataContractSerialization (7)
System\Xml\XmlBaseWriter.cs (7)
2049
while (
_attributeCount
> 0)
2051
XmlAttribute attribute = _attributes![
_attributeCount
- 1];
2080
else if (_attributes.Length ==
_attributeCount
)
2082
XmlAttribute[] newAttributes = new XmlAttribute[
_attributeCount
* 2];
2083
Array.Copy(_attributes, newAttributes,
_attributeCount
);
2086
XmlAttribute attribute = _attributes[
_attributeCount
];
2090
_attributes[
_attributeCount
] = attribute;