10 references to TypeTest
System.Private.Xml (10)
System\Xml\XPath\Internal\BaseAxisQuery.cs (3)
80
TypeTest
== e.NodeType ||
81
TypeTest
== XPathNodeType.All ||
82
TypeTest
== XPathNodeType.Text && (e.NodeType == XPathNodeType.Whitespace || e.NodeType == XPathNodeType.SignificantWhitespace)
System\Xml\XPath\Internal\ChildrenQuery.cs (3)
35
if (
TypeTest
== XPathNodeType.ProcessingInstruction)
37
_iterator = new IteratorFilter(input.SelectChildren(
TypeTest
), Name);
46
_iterator = input.SelectChildren(
TypeTest
);
System\Xml\XPath\Internal\DescendantQuery.cs (3)
41
if (
TypeTest
== XPathNodeType.ProcessingInstruction)
43
_nodeIterator = new IteratorFilter(nav.SelectDescendants(
TypeTest
, matchSelf), Name);
52
_nodeIterator = nav.SelectDescendants(
TypeTest
, matchSelf);
System\Xml\XPath\Internal\FollowingQuery.cs (1)
73
_iterator = _input.SelectDescendants(
TypeTest
, matchSelf);