6 overrides of Name
System.Data.Common (1)
System\Xml\DataDocumentXPathNavigator.cs (1)
46public override string Name => _curNode.Name;
System.Private.Xml (4)
System\Xml\Cache\XPathDocumentNavigator.cs (1)
179public override string Name
System\Xml\Dom\DocumentXPathNavigator.cs (1)
123public override string Name
System\Xml\XPath\XPathNavigatorReader.cs (1)
1173public override string Name
System\Xml\Xsl\Runtime\RtfNavigator.cs (1)
71public override string Name
System.Private.Xml.Linq (1)
System\Xml\XPath\XNodeNavigator.cs (1)
156public override string Name
11 references to Name
System.Private.Xml (11)
System\Xml\XPath\Internal\NodeFunctions.cs (1)
67return argVal.Name;
System\Xml\XPath\XPathNavigator.cs (3)
1334return $"{Name}=\"{Value}\""; 2153result += $", Name=\"{_nav.Name}\""; 2158result += $", Name=\"{_nav.Name}\"";
System\Xml\Xsl\XsltOld\Compiler.cs (2)
1153string thisName = nav.Name; 1155string parentName = nav.Name;
System\Xml\Xsl\XsltOld\NavigatorInput.cs (1)
124return _Navigator.Name;
System\Xml\Xsl\XsltOld\newinstructionaction.cs (2)
20_name = nav.Name; 22_parent = nav.Name;
System\Xml\Xsl\XsltOld\NumberAction.cs (2)
465if (contextNode.Name == nav.Name && BasicNodeType(contextNode.NodeType) == BasicNodeType(nav.NodeType))