Beispiel #1
0
 private ScrappingNode(ScrappingBrowser browser, IHTMLDocument doc)
 {
     this.browser = browser;
     this.mainDom = doc;
     InitializeSubDocument(mainDom);
 }
Beispiel #2
0
 public ScrappingContext(Action <String> Navigated)
 {
     browser = new ScrappingBrowser(() => { navi = true; }, () => { navi = false; Navigated(GetUrl()); });
 }
Beispiel #3
0
 public ScrappingNode(ScrappingBrowser browser, HtmlDocument doc)
     : this(browser, doc.DomDocument as IHTMLDocument)
 {
     this.doc = doc;
 }