iTextSharp.text.html.HtmlParser.Go C# (CSharp) Method

Go() public method

Parses a given file.
public Go ( IDocListener document, String file ) : void
document IDocListener
file String
return void
        public override void Go(IDocListener document, String file) {
            parser = new ITextmyHtmlHandler(document);
            parser.Parse(file);
        }
    

Same methods

HtmlParser::Go ( IDocListener document, String file, Hashtable tagmap ) : void
HtmlParser::Go ( IDocListener document, String file, String tagmap ) : void
HtmlParser::Go ( IDocListener document, XmlDocument xDoc ) : void
HtmlParser::Go ( IDocListener document, XmlDocument xDoc, XmlDocument xTagmap ) : void
HtmlParser::Go ( IDocListener document, XmlTextReader reader ) : void
HtmlParser::Go ( IDocListener document, XmlTextReader reader, Hashtable tagmap ) : void
HtmlParser::Go ( IDocListener document, XmlTextReader reader, String tagmap ) : void

Usage Example

Esempio n. 1
0
 /// <summary>
 /// Parses a given file.
 /// </summary>
 /// <param name="document"></param>
 /// <param name="file"></param>
 /// <param name="tagmap"></param>
 public static new void Parse(IDocListener document, String file, Hashtable tagmap)
 {
     HtmlParser p = new HtmlParser();
     p.Go(document, file, tagmap);
 }
All Usage Examples Of iTextSharp.text.html.HtmlParser::Go