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