Esempio n. 1
0
 public void GetPage(IUrl url, string pendingXPath = null)
 {
     Appeals++;
     _document = null;
     FileName  = Converting(url.Get());
     if (Urls.Contains(FileName) && File.Exists(FullPath))
     {
         _document = Load();
         if (_document != null)
         {
             return;
         }
     }
     Downloads++;
     _loader.GetPage(url, pendingXPath);
 }
Esempio n. 2
0
 public void GetPage(IUrl url, string pendingXPath = null)
 {
     GoTo(url.Get(), pendingXPath);
 }