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)
533
msw.WriteLine(" <AxisType> {0} </AxisType>", printaxis.
TypeOfAxis
);
547
return ((ast.
TypeOfAxis
== Axis.AxisType.Child) && (ast.NodeType == XPathNodeType.Element));
552
return ((ast.
TypeOfAxis
== Axis.AxisType.Attribute) && (ast.NodeType == XPathNodeType.Attribute));
557
return ((ast.
TypeOfAxis
== Axis.AxisType.DescendantOrSelf) && (ast.NodeType == XPathNodeType.All) && (ast.AbbrAxis));
562
return ((ast.
TypeOfAxis
== Axis.AxisType.Self) && (ast.NodeType == XPathNodeType.All) && (ast.AbbrAxis));
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\querybuilder.cs (5)
77
root.
TypeOfAxis
== Axis.AxisType.Child &&
78
input.
TypeOfAxis
== Axis.AxisType.DescendantOrSelf && input.NodeType == XPathNodeType.All
100
if (root.
TypeOfAxis
== Axis.AxisType.Descendant || root.
TypeOfAxis
== Axis.AxisType.DescendantOrSelf)
115
switch (root.
TypeOfAxis
)