24 references to Name
dotnet-svcutil-lib (24)
FrameworkFork\Microsoft.Xml\Xml\schema\AstTree.cs (7)
107if (!AxisStack.Equal(this.curNode.Name, this.curNode.Urn, name, URN)) 224if (_subtree.IsDss && Equal(_subtree.RootNode.Name, _subtree.RootNode.Urn, name, URN)) 236if (_subtree.IsDss && Equal(_subtree.RootNode.Name, _subtree.RootNode.Urn, name, URN)) 259if (!Equal(_subtree.TopNode.Name, _subtree.TopNode.Urn, name, URN)) 415: base(axis.TypeOfAxis, inputaxis, axis.Prefix, axis.Name, axis.NodeType) 531msw.WriteLine(" <Name> {0} </Name>", printaxis.Name); 723else if (axis.Name.Length != 0)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\querybuilder.cs (17)
91result = new DescendantQuery(qyGrandInput, root.Name, root.Prefix, root.NodeType, false, input.AbbrAxis); 118result = new XPathAncestorQuery(qyInput, root.Name, root.Prefix, root.NodeType, false); 122result = new XPathAncestorQuery(qyInput, root.Name, root.Prefix, root.NodeType, true); 128result = new CacheChildrenQuery(qyInput, root.Name, root.Prefix, root.NodeType); 132result = new ChildrenQuery(qyInput, root.Name, root.Prefix, root.NodeType); 136result = new ParentQuery(qyInput, root.Name, root.Prefix, root.NodeType); 141result = new DescendantOverDescendantQuery(qyInput, false, root.Name, root.Prefix, root.NodeType, /*abbrAxis:*/false); 145result = new DescendantQuery(qyInput, root.Name, root.Prefix, root.NodeType, false, /*abbrAxis:*/false); 156result = new DescendantOverDescendantQuery(qyInput, true, root.Name, root.Prefix, root.NodeType, root.AbbrAxis); 160result = new DescendantQuery(qyInput, root.Name, root.Prefix, root.NodeType, true, root.AbbrAxis); 169result = new PrecedingQuery(qyInput, root.Name, root.Prefix, root.NodeType); 173result = new FollowingQuery(qyInput, root.Name, root.Prefix, root.NodeType); 177result = new FollSiblingQuery(qyInput, root.Name, root.Prefix, root.NodeType); 184result = new PreSiblingQuery(qyInput, root.Name, root.Prefix, root.NodeType); 187result = new AttributeQuery(qyInput, root.Name, root.Prefix, root.NodeType); 190result = new XPathSelfQuery(qyInput, root.Name, root.Prefix, root.NodeType); 195result = new NamespaceQuery(qyInput, root.Name, root.Prefix, root.NodeType);