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