27 references to NodeType
dotnet-svcutil-lib (27)
FrameworkFork\Microsoft.Xml\Xml\schema\AstTree.cs (6)
415
: base(axis.TypeOfAxis, inputaxis, axis.Prefix, axis.Name, axis.
NodeType
)
532
msw.WriteLine(" <NodeType> {0} </NodeType>", printaxis.
NodeType
);
547
return ((ast.TypeOfAxis == Axis.AxisType.Child) && (ast.
NodeType
== XPathNodeType.Element));
552
return ((ast.TypeOfAxis == Axis.AxisType.Attribute) && (ast.
NodeType
== XPathNodeType.Attribute));
557
return ((ast.TypeOfAxis == Axis.AxisType.DescendantOrSelf) && (ast.
NodeType
== XPathNodeType.All) && (ast.AbbrAxis));
562
return ((ast.TypeOfAxis == Axis.AxisType.Self) && (ast.
NodeType
== XPathNodeType.All) && (ast.AbbrAxis));
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\querybuilder.cs (21)
78
input.TypeOfAxis == Axis.AxisType.DescendantOrSelf && input.
NodeType
== XPathNodeType.All
91
result = new DescendantQuery(qyGrandInput, root.Name, root.Prefix, root.
NodeType
, false, input.AbbrAxis);
118
result = new XPathAncestorQuery(qyInput, root.Name, root.Prefix, root.
NodeType
, false);
122
result = new XPathAncestorQuery(qyInput, root.Name, root.Prefix, root.
NodeType
, true);
128
result = new CacheChildrenQuery(qyInput, root.Name, root.Prefix, root.
NodeType
);
132
result = new ChildrenQuery(qyInput, root.Name, root.Prefix, root.
NodeType
);
136
result = new ParentQuery(qyInput, root.Name, root.Prefix, root.
NodeType
);
141
result = new DescendantOverDescendantQuery(qyInput, false, root.Name, root.Prefix, root.
NodeType
, /*abbrAxis:*/false);
145
result = new DescendantQuery(qyInput, root.Name, root.Prefix, root.
NodeType
, false, /*abbrAxis:*/false);
156
result = new DescendantOverDescendantQuery(qyInput, true, root.Name, root.Prefix, root.
NodeType
, root.AbbrAxis);
160
result = new DescendantQuery(qyInput, root.Name, root.Prefix, root.
NodeType
, true, root.AbbrAxis);
169
result = new PrecedingQuery(qyInput, root.Name, root.Prefix, root.
NodeType
);
173
result = new FollowingQuery(qyInput, root.Name, root.Prefix, root.
NodeType
);
177
result = new FollSiblingQuery(qyInput, root.Name, root.Prefix, root.
NodeType
);
184
result = new PreSiblingQuery(qyInput, root.Name, root.Prefix, root.
NodeType
);
187
result = new AttributeQuery(qyInput, root.Name, root.Prefix, root.
NodeType
);
190
result = new XPathSelfQuery(qyInput, root.Name, root.Prefix, root.
NodeType
);
193
if ((root.
NodeType
== XPathNodeType.All || root.
NodeType
== XPathNodeType.Element || root.
NodeType
== XPathNodeType.Attribute) && root.Prefix.Length == 0)
195
result = new NamespaceQuery(qyInput, root.Name, root.Prefix, root.
NodeType
);