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)
264
switch (
_currentNode
.NodeType)
290
XmlAttribute attr = (
_currentNode
as XmlAttribute)!;
316
throw new InvalidOperationException(SR.Format(SR.Xml_UnexpectedNodeType,
_currentNode
.NodeType));
323
XmlElement? elementNode =
_currentNode
as XmlElement;
478
return
_currentNode
!.Value;
753
throw new InvalidOperationException(SR.Format(SR.Xml_UnexpectedNodeType,
_currentNode
!.NodeType));
792
ex.SetSourceObject(
_currentNode
);