11 references to DescendantOrSelf
System.Xml (11)
System\Xml\Schema\Asttree.cs (1)
473return ((ast.TypeOfAxis == Axis.AxisType.DescendantOrSelf) && (ast.NodeType == XPathNodeType.All) && (ast.AbbrAxis));
System\Xml\XPath\Internal\QueryBuilder.cs (3)
70input.TypeOfAxis == Axis.AxisType.DescendantOrSelf && input.NodeType == XPathNodeType.All 87if (root.TypeOfAxis == Axis.AxisType.Descendant || root.TypeOfAxis == Axis.AxisType.DescendantOrSelf) { 129case Axis.AxisType.DescendantOrSelf:
System\Xml\XPath\Internal\XPathParser.cs (7)
223 opnd = ParseRelativeLocationPath(new Axis(Axis.AxisType.DescendantOrSelf, opnd)); 270return ParseRelativeLocationPath(new Axis(Axis.AxisType.DescendantOrSelf, new Root())); 285opnd = new Axis(Axis.AxisType.DescendantOrSelf, opnd); 546opnd = new Axis(Axis.AxisType.DescendantOrSelf, new Root()); 558opnd = new Axis(Axis.AxisType.DescendantOrSelf, opnd); 608opnd = ParseRelativePathPattern(new Axis(Axis.AxisType.DescendantOrSelf, opnd)); 750table.Add("descendant-or-self", Axis.AxisType.DescendantOrSelf );