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)
283
switch (
_currentNode
.NodeType)
307
XmlAttribute attr =
_currentNode
as XmlAttribute;
333
throw new InvalidOperationException(string.Format(ResXml.Xml_UnexpectedNodeType, new string[] {
_currentNode
.NodeType.ToString() }));
345
XmlElement elementNode =
_currentNode
as XmlElement;
503
return
_currentNode
.Value;
780
throw new InvalidOperationException(string.Format(ResXml.Xml_UnexpectedNodeType, new string[] {
_currentNode
.NodeType.ToString() }));
817
ex.SetSourceObject(
_currentNode
);