10 references to TypeOfAxis
System.Xml (10)
System\Xml\Schema\Asttree.cs (5)
352
: base(axis.
TypeOfAxis
, inputaxis, axis.Prefix, axis.Name, axis.NodeType) {
465
return ((ast.
TypeOfAxis
== Axis.AxisType.Child) && (ast.NodeType == XPathNodeType.Element));
469
return ((ast.
TypeOfAxis
== Axis.AxisType.Attribute) && (ast.NodeType == XPathNodeType.Attribute));
473
return ((ast.
TypeOfAxis
== Axis.AxisType.DescendantOrSelf) && (ast.NodeType == XPathNodeType.All) && (ast.AbbrAxis));
477
return ((ast.
TypeOfAxis
== Axis.AxisType.Self) && (ast.NodeType == XPathNodeType.All) && (ast.AbbrAxis));
System\Xml\XPath\Internal\QueryBuilder.cs (5)
69
root.
TypeOfAxis
== Axis.AxisType.Child &&
70
input.
TypeOfAxis
== Axis.AxisType.DescendantOrSelf && input.NodeType == XPathNodeType.All
87
if (root.
TypeOfAxis
== Axis.AxisType.Descendant || root.
TypeOfAxis
== Axis.AxisType.DescendantOrSelf) {
99
switch (root.
TypeOfAxis
) {