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));
        }