11 references to DescendantOrSelf
System.Private.Xml (11)
System\Xml\Schema\Asttree.cs (1)
538return ((ast.TypeOfAxis == Axis.AxisType.DescendantOrSelf) && (ast.NodeType == XPathNodeType.All) && (ast.AbbrAxis));
System\Xml\XPath\Internal\QueryBuilder.cs (3)
76input.TypeOfAxis == Axis.AxisType.DescendantOrSelf && input.NodeType == XPathNodeType.All 98if (root.TypeOfAxis == Axis.AxisType.Descendant || root.TypeOfAxis == Axis.AxisType.DescendantOrSelf) 151case Axis.AxisType.DescendantOrSelf:
System\Xml\XPath\Internal\XPathParser.cs (7)
250opnd = ParseRelativeLocationPath(new Axis(Axis.AxisType.DescendantOrSelf, opnd)); 305return ParseRelativeLocationPath(new Axis(Axis.AxisType.DescendantOrSelf, new Root())); 324opnd = new Axis(Axis.AxisType.DescendantOrSelf, opnd); 625opnd = new Axis(Axis.AxisType.DescendantOrSelf, new Root()); 640opnd = new Axis(Axis.AxisType.DescendantOrSelf, opnd); 696opnd = ParseRelativePathPattern(new Axis(Axis.AxisType.DescendantOrSelf, opnd)); 854table.Add("descendant-or-self", Axis.AxisType.DescendantOrSelf);