12 references to Name
System.Xml (12)
System\Xml\XPath\Internal\BaseAxisQuery.cs (2)
124w.WriteAttributeString("name", Prefix.Length != 0 ? Prefix + ':' + Name : Name);
System\Xml\XPath\Internal\ChildrenQuery.cs (2)
38iterator = new IteratorFilter(input.SelectChildren(TypeTest), Name); 40iterator = input.SelectChildren(Name, Namespace);
System\Xml\XPath\Internal\DescendantBaseQuery.cs (2)
57w.WriteAttributeString("name", Prefix.Length != 0 ? Prefix + ':' + Name : Name);
System\Xml\XPath\Internal\DescendantQuery.cs (2)
39nodeIterator = new IteratorFilter(nav.SelectDescendants(TypeTest, matchSelf), Name); 41nodeIterator = nav.SelectDescendants(Name, Namespace, matchSelf);
System\Xml\XPath\Internal\FollowingQuery.cs (1)
60iterator = input.SelectDescendants(Name, Namespace, matchSelf);
System\Xml\XPath\Internal\NamespaceQuery.cs (1)
60return Name.Equals(e.LocalName);
System\Xml\XPath\Internal\XPathAncestorQuery.cs (2)
64w.WriteAttributeString("name", Prefix.Length != 0 ? Prefix + ':' + Name : Name);