3 writes to _currentNode
System.Private.Xml (3)
System\Xml\Dom\DocumentSchemaValidator.cs (3)
263_currentNode = node; 369_currentNode = elementNode; //Reset current Node for validation call back 393_currentNode = attr; //For nodeValueGetter to pick up the right attribute value
7 references to _currentNode
System.Private.Xml (7)
System\Xml\Dom\DocumentSchemaValidator.cs (7)
264switch (_currentNode.NodeType) 290XmlAttribute attr = (_currentNode as XmlAttribute)!; 316throw new InvalidOperationException(SR.Format(SR.Xml_UnexpectedNodeType, _currentNode.NodeType)); 323XmlElement? elementNode = _currentNode as XmlElement; 478return _currentNode!.Value; 753throw new InvalidOperationException(SR.Format(SR.Xml_UnexpectedNodeType, _currentNode!.NodeType)); 792ex.SetSourceObject(_currentNode);