3 instantiations of FilterQuery
System.Private.Xml (3)
System\Xml\XPath\Internal\FilterQuery.cs (1)
180
public override XPathNodeIterator Clone() { return new
FilterQuery
(this); }
System\Xml\XPath\Internal\QueryBuilder.cs (2)
292
qyInput = new
FilterQuery
(qyInput, cond, /*noPosition:*/false);
305
return new
FilterQuery
(qyInput, cond, /*noPosition:*/(propsCond & Props.HasPosition) == 0);
3 references to FilterQuery
System.Private.Xml (3)
System\Xml\XPath\Internal\FilterQuery.cs (1)
21
private FilterQuery(
FilterQuery
other) : base(other)
System\Xml\XPath\Internal\QueryBuilder.cs (2)
255
FilterQuery
? qyFilter = qyInput as
FilterQuery
;