Parser.ParserBase.IsTagXmlNode C# (CSharp) Method

IsTagXmlNode() protected method

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

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

            #endregion

            return node.Name == cTagXmlNodeName;
        }