System.Data.XmlDataLoader.FColumnElement C# (CSharp) Метод

FColumnElement() приватный Метод

private FColumnElement ( XmlElement e ) : bool
e System.Xml.XmlElement
Результат bool
        internal bool FColumnElement(XmlElement e)
        {
            if (_nodeToSchemaMap.GetColumnSchema(e, FIgnoreNamespace(e)) == null)
                return false;

            if (CountNonNSAttributes(e) > 0)
                return false;

            for (XmlNode tabNode = e.FirstChild; tabNode != null; tabNode = tabNode.NextSibling)
                if (tabNode is XmlElement)
                    return false;

            return true;
        }