Parser.ParserBase.IsTextXmlNode C# (CSharp) Method

IsTextXmlNode() protected method

Determines whether the specified node is a text node.
protected IsTextXmlNode ( XmlNode node ) : bool
node System.Xml.XmlNode
return bool
        protected bool IsTextXmlNode(XmlNode node)
        {
            #region Check arguments

            if (node == null)
                throw new ArgumentNullException("node");

            #endregion

            return node.Name == cTextXmlNodeName;
        }