16 references to TypeTest
dotnet-svcutil-lib (16)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\baseaxisquery.cs (5)
85
TypeTest
== e.NodeType ||
86
TypeTest
== XPathNodeType.All ||
87
TypeTest
== XPathNodeType.Text && (e.NodeType == XPathNodeType.Whitespace || e.NodeType == XPathNodeType.SignificantWhitespace)
147
if (
TypeTest
!= XPathNodeType.Element)
149
w.WriteAttributeString("nodeType",
TypeTest
.ToString());
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ChildrenQuery.cs (3)
42
if (
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)
71
if (
TypeTest
!= XPathNodeType.Element)
73
w.WriteAttributeString("nodeType",
TypeTest
.ToString());
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\DescendantQuery.cs (3)
44
if (
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)
79
if (
TypeTest
!= XPathNodeType.Element)
81
w.WriteAttributeString("nodeType",
TypeTest
.ToString());