3 writes to _currentNode
dotnet-svcutil-lib (3)
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentSchemaValidator.cs (3)
282_currentNode = node; 389_currentNode = elementNode; //Reset current Node for validation call back 413_currentNode = attr; //For nodeValueGetter to pick up the right attribute value
7 references to _currentNode
dotnet-svcutil-lib (7)
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentSchemaValidator.cs (7)
283switch (_currentNode.NodeType) 307XmlAttribute attr = _currentNode as XmlAttribute; 333throw new InvalidOperationException(string.Format(ResXml.Xml_UnexpectedNodeType, new string[] { _currentNode.NodeType.ToString() })); 345XmlElement elementNode = _currentNode as XmlElement; 503return _currentNode.Value; 780throw new InvalidOperationException(string.Format(ResXml.Xml_UnexpectedNodeType, new string[] { _currentNode.NodeType.ToString() })); 817ex.SetSourceObject(_currentNode);