10 references to TypeOfAxis
System.Private.Xml (10)
System\Xml\Schema\Asttree.cs (5)
419
: base(axis.
TypeOfAxis
, inputaxis, axis.Prefix, axis.Name, axis.NodeType)
528
return ((ast.
TypeOfAxis
== Axis.AxisType.Child) && (ast.NodeType == XPathNodeType.Element));
533
return ((ast.
TypeOfAxis
== Axis.AxisType.Attribute) && (ast.NodeType == XPathNodeType.Attribute));
538
return ((ast.
TypeOfAxis
== Axis.AxisType.DescendantOrSelf) && (ast.NodeType == XPathNodeType.All) && (ast.AbbrAxis));
543
return ((ast.
TypeOfAxis
== Axis.AxisType.Self) && (ast.NodeType == XPathNodeType.All) && (ast.AbbrAxis));
System\Xml\XPath\Internal\QueryBuilder.cs (5)
75
root.
TypeOfAxis
== Axis.AxisType.Child &&
76
input.
TypeOfAxis
== Axis.AxisType.DescendantOrSelf && input.NodeType == XPathNodeType.All
98
if (root.
TypeOfAxis
== Axis.AxisType.Descendant || root.
TypeOfAxis
== Axis.AxisType.DescendantOrSelf)
113
switch (root.
TypeOfAxis
)