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)
258return (i >= 0) ? _attributeEvents[i].RawValue : null; 269attribute = _attributeEvents[i]; 285return _attributeEvents[i].RawValue; 322_cachedNode = _attributeEvents[i]; 339attribute = _attributeEvents[i]; 344_cachedNode = _attributeEvents[i]; 358_cachedNode = _attributeEvents[i]; 369_cachedNode = _attributeEvents[0]; 378_cachedNode = _attributeEvents[++_currentAttrIndex]; 653Debug.Assert(attIndex < _attributeEvents.Length); 654ValidatingReaderNodeData attInfo = _attributeEvents[attIndex]; 660if (attIndex >= _attributeEvents.Length - 1) 662ValidatingReaderNodeData[] newAttributeEvents = new ValidatingReaderNodeData[_attributeEvents.Length * 2]; 663Array.Copy(_attributeEvents, newAttributeEvents, _attributeEvents.Length); 666return _attributeEvents[attIndex] ??= new ValidatingReaderNodeData(XmlNodeType.Attribute); 721attribute = _attributeEvents[i]; 740attribute = _attributeEvents[i];