16 references to TypeTest
dotnet-svcutil-lib (16)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\baseaxisquery.cs (5)
85TypeTest == e.NodeType || 86TypeTest == XPathNodeType.All || 87TypeTest == XPathNodeType.Text && (e.NodeType == XPathNodeType.Whitespace || e.NodeType == XPathNodeType.SignificantWhitespace) 147if (TypeTest != XPathNodeType.Element) 149w.WriteAttributeString("nodeType", TypeTest.ToString());
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ChildrenQuery.cs (3)
42if (TypeTest == XPathNodeType.ProcessingInstruction) 44_iterator = new IteratorFilter(input.SelectChildren(TypeTest), Name); 53_iterator = input.SelectChildren(TypeTest);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\DescendantBaseQuery.cs (2)
71if (TypeTest != XPathNodeType.Element) 73w.WriteAttributeString("nodeType", TypeTest.ToString());
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\DescendantQuery.cs (3)
44if (TypeTest == XPathNodeType.ProcessingInstruction) 46_nodeIterator = new IteratorFilter(nav.SelectDescendants(TypeTest, matchSelf), Name); 55_nodeIterator = nav.SelectDescendants(TypeTest, matchSelf);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\followingquery.cs (1)
76_iterator = _input.SelectDescendants(TypeTest, matchSelf);
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathAncestorQuery.cs (2)
79if (TypeTest != XPathNodeType.Element) 81w.WriteAttributeString("nodeType", TypeTest.ToString());