2 writes to attributeEvents
System.Xml (2)
System\Xml\Core\XsdCachingReader.cs (2)
67
attributeEvents
= new ValidatingReaderNodeData[InitialAttributeCount];
569
attributeEvents
= newAttributeEvents;
19 references to attributeEvents
System.Xml (19)
System\Xml\Core\XsdCachingReader.cs (19)
221
return (i >= 0) ?
attributeEvents
[i].RawValue : null;
230
attribute =
attributeEvents
[i];
243
return
attributeEvents
[i].RawValue;
279
cachedNode =
attributeEvents
[i];
293
attribute =
attributeEvents
[i];
297
cachedNode =
attributeEvents
[i];
310
cachedNode =
attributeEvents
[i];
319
cachedNode =
attributeEvents
[0];
326
cachedNode =
attributeEvents
[++currentAttrIndex];
560
Debug.Assert(attIndex <=
attributeEvents
.Length);
561
ValidatingReaderNodeData attInfo =
attributeEvents
[attIndex];
566
if (attIndex >=
attributeEvents
.Length -1 ) { //reached capacity of array, Need to increase capacity to twice the initial
567
ValidatingReaderNodeData[] newAttributeEvents = new ValidatingReaderNodeData[
attributeEvents
.Length * 2];
568
Array.Copy(
attributeEvents
, 0, newAttributeEvents, 0,
attributeEvents
.Length);
571
attInfo =
attributeEvents
[attIndex];
574
attributeEvents
[attIndex] = attInfo;
625
attribute =
attributeEvents
[i];
640
attribute =
attributeEvents
[i];