/**
 * Parses the XML document firing the events to the handler.
 * @param doc the document handler
 * @param r the document. The encoding is already resolved. The reader is not closed
 * @throws IOException on error
 */
 public static void Parse(ISimpleXMLDocHandler doc, ISimpleXMLDocHandlerComment comment, TextReader r, bool html) {
     SimpleXMLParser parser = new SimpleXMLParser(doc, comment, html);
     parser.Go(r);
 }
        /**
         * Parses the XML document firing the events to the handler.
         * @param doc the document handler
         * @param r the document. The encoding is already resolved. The reader is not closed
         * @throws IOException on error
         */
        public static void Parse(ISimpleXMLDocHandler doc, ISimpleXMLDocHandlerComment comment, TextReader r, bool html)
        {
            SimpleXMLParser parser = new SimpleXMLParser(doc, comment, html);

            parser.Go(r);
        }