System.Xml.Schema.Asttree.IsNameTest C# (CSharp) 메소드

IsNameTest() 개인적인 정적인 메소드

private static IsNameTest ( Axis ast ) : bool
ast Axis
리턴 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));
        }