2 writes to _attributeEvents
System.Private.Xml (2)
System\Xml\Core\XsdCachingReader.cs (2)
64
_attributeEvents
= new ValidatingReaderNodeData[InitialAttributeCount];
664
_attributeEvents
= newAttributeEvents;
18 references to _attributeEvents
System.Private.Xml (18)
System\Xml\Core\XsdCachingReader.cs (18)
258
return (i >= 0) ?
_attributeEvents
[i].RawValue : null;
269
attribute =
_attributeEvents
[i];
285
return
_attributeEvents
[i].RawValue;
322
_cachedNode =
_attributeEvents
[i];
339
attribute =
_attributeEvents
[i];
344
_cachedNode =
_attributeEvents
[i];
358
_cachedNode =
_attributeEvents
[i];
369
_cachedNode =
_attributeEvents
[0];
378
_cachedNode =
_attributeEvents
[++_currentAttrIndex];
653
Debug.Assert(attIndex <
_attributeEvents
.Length);
654
ValidatingReaderNodeData attInfo =
_attributeEvents
[attIndex];
660
if (attIndex >=
_attributeEvents
.Length - 1)
662
ValidatingReaderNodeData[] newAttributeEvents = new ValidatingReaderNodeData[
_attributeEvents
.Length * 2];
663
Array.Copy(
_attributeEvents
, newAttributeEvents,
_attributeEvents
.Length);
666
return
_attributeEvents
[attIndex] ??= new ValidatingReaderNodeData(XmlNodeType.Attribute);
721
attribute =
_attributeEvents
[i];
740
attribute =
_attributeEvents
[i];