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