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