2 instantiations of AttributeQuery
System.Private.Xml (2)
System\Xml\XPath\Internal\AttributeQuery.cs (1)
74public override XPathNodeIterator Clone() { return new AttributeQuery(this); }
System\Xml\XPath\Internal\QueryBuilder.cs (1)
185result = new AttributeQuery(qyInput, root.Name, root.Prefix, root.NodeType);
4 references to AttributeQuery
System.Private.Xml (4)
System\Xml\XPath\Internal\AttributeQuery.cs (1)
15private AttributeQuery(AttributeQuery other) : base(other)
System\Xml\XPath\Internal\BaseAxisQuery.cs (1)
120Debug.Assert(this is AttributeQuery || this is ChildrenQuery);
System\Xml\XPath\Internal\FilterQuery.cs (2)
114AttributeQuery? attributeQuery = qyInput as AttributeQuery;