23 references to Name
System.Xml (23)
System\Xml\Schema\Asttree.cs (6)
93if (! AxisStack.Equal (this.curNode.Name, this.curNode.Urn, name, URN)) { 191if ( this.subtree.IsDss && Equal (this.subtree.RootNode.Name, this.subtree.RootNode.Urn, name, URN)) { 201if ( this.subtree.IsDss && Equal (this.subtree.RootNode.Name, this.subtree.RootNode.Urn, name, URN)) { 219if (! Equal (this.subtree.TopNode.Name, this.subtree.TopNode.Urn, name, URN) ) { 352: base(axis.TypeOfAxis, inputaxis, axis.Prefix, axis.Name, axis.NodeType) { 607} else if (axis.Name.Length != 0) { // (2)
System\Xml\XPath\Internal\QueryBuilder.cs (17)
79result = new DescendantQuery(qyGrandInput, root.Name, root.Prefix, root.NodeType, false, input.AbbrAxis); 101result = new XPathAncestorQuery(qyInput , root.Name, root.Prefix, root.NodeType, false); 105result = new XPathAncestorQuery(qyInput, root.Name, root.Prefix, root.NodeType, true); 110result = new CacheChildrenQuery(qyInput, root.Name, root.Prefix, root.NodeType); 112result = new ChildrenQuery(qyInput, root.Name, root.Prefix, root.NodeType); 116result = new ParentQuery(qyInput, root.Name, root.Prefix, root.NodeType); 120result = new DescendantOverDescendantQuery(qyInput, false, root.Name, root.Prefix, root.NodeType, /*abbrAxis:*/false); 122result = new DescendantQuery(qyInput, root.Name, root.Prefix, root.NodeType, false, /*abbrAxis:*/false); 131result = new DescendantOverDescendantQuery(qyInput, true, root.Name, root.Prefix, root.NodeType, root.AbbrAxis); 133result = new DescendantQuery(qyInput, root.Name, root.Prefix, root.NodeType, true, root.AbbrAxis); 141result = new PrecedingQuery(qyInput, root.Name, root.Prefix, root.NodeType); 145result = new FollowingQuery(qyInput, root.Name, root.Prefix, root.NodeType); 149result = new FollSiblingQuery(qyInput, root.Name, root.Prefix, root.NodeType); 155result = new PreSiblingQuery(qyInput, root.Name, root.Prefix, root.NodeType); 158result = new AttributeQuery(qyInput, root.Name, root.Prefix, root.NodeType); 161result = new XPathSelfQuery(qyInput, root.Name, root.Prefix, root.NodeType); 165result = new NamespaceQuery(qyInput, root.Name, root.Prefix, root.NodeType);