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