2 writes to readAhead
System.Xml (2)
System\Xml\Core\XsdCachingReader.cs (2)
80readAhead = false; 434readAhead = true;
4 references to readAhead
System.Xml (4)
System\Xml\Core\XsdCachingReader.cs (2)
392if (coreReader.NodeType != XmlNodeType.Element || readAhead) { //Only when coreReader not positioned on Element node, read ahead, otherwise it is on the next element node already, since this was not cached 470if (coreReader.NodeType != XmlNodeType.EndElement && !readAhead) { //will be true for IsDefault cases where we peek only one node ahead
System\Xml\Core\XsdCachingReaderAsync.cs (2)
76if (coreReader.NodeType != XmlNodeType.Element || readAhead) { //Only when coreReader not positioned on Element node, read ahead, otherwise it is on the next element node already, since this was not cached 98if (coreReader.NodeType != XmlNodeType.EndElement && !readAhead) { //will be true for IsDefault cases where we peek only one node ahead