Parser.ParserBase.XmlNodesToText C# (CSharp) Method

XmlNodesToText() protected method

Converts the specified xml node collection to the text.
protected XmlNodesToText ( StringBuilder output, XmlNodeList nodes ) : void
output StringBuilder
nodes System.Xml.XmlNodeList
return void
        protected void XmlNodesToText(StringBuilder output, XmlNodeList nodes)
        {
            #region Check arguments

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

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

            #endregion

            foreach (XmlNode myNode in nodes)
                XmlNodeToText(output, myNode);
        }