11 references to TypeOfAxis
dotnet-svcutil-lib (11)
FrameworkFork\Microsoft.Xml\Xml\schema\AstTree.cs (6)
415: base(axis.TypeOfAxis, inputaxis, axis.Prefix, axis.Name, axis.NodeType) 533msw.WriteLine(" <AxisType> {0} </AxisType>", printaxis.TypeOfAxis); 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 (5)
77root.TypeOfAxis == Axis.AxisType.Child && 78input.TypeOfAxis == Axis.AxisType.DescendantOrSelf && input.NodeType == XPathNodeType.All 100if (root.TypeOfAxis == Axis.AxisType.Descendant || root.TypeOfAxis == Axis.AxisType.DescendantOrSelf) 115switch (root.TypeOfAxis)