System.Xml.Schema.Asttree.IsNameTest C# (CSharp) Méthode

IsNameTest() private static méthode

private static IsNameTest ( Axis ast ) : bool
ast Axis
Résultat 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));
        }