3 writes to currentNode
System.Xml (3)
System\Xml\Dom\DocumentSchemaValidator.cs (3)
243
currentNode
= node;
339
currentNode
= elementNode; //Reset current Node for validation call back
359
currentNode
= attr; //For nodeValueGetter to pick up the right attribute value
7 references to currentNode
System.Xml (7)
System\Xml\Dom\DocumentSchemaValidator.cs (7)
244
switch (
currentNode
.NodeType) {
265
XmlAttribute attr =
currentNode
as XmlAttribute;
290
throw new InvalidOperationException( Res.GetString( Res.Xml_UnexpectedNodeType, new string[]{
currentNode
.NodeType.ToString() } ) );
301
XmlElement elementNode =
currentNode
as XmlElement;
435
return
currentNode
.Value;
672
throw new InvalidOperationException( Res.GetString( Res.Xml_UnexpectedNodeType, new string[]{
currentNode
.NodeType.ToString() } ) );
702
ex.SetSourceObject(
currentNode
);