System.Xml.Schema.Asttree.IsNameTest C# (CSharp) Method

IsNameTest() private static method

private static IsNameTest ( Axis ast ) : bool
ast Axis
return bool
        private static bool IsNameTest(Axis ast) {
            // Type = Element, abbrAxis = false
            // all are the same, has child:: or not
            return ((ast.TypeOfAxis == Axis.AxisType.Child) && (ast.NodeType == XPathNodeType.Element));
        }