コード例 #1
0
 public PageGetter(
     IWebClientWrapper client,
     IHtmlDocumentWrapper document,
     IWebsite website,
     ILog log)
 {
     _client   = client;
     _document = document;
     _website  = website;
     _log      = log;
     _urls     = new List <string>();
 }
コード例 #2
0
 public PageChecker(
     ILinkDictionary dictionary,
     IWebClientWrapper client,
     IHtmlDocumentWrapper document,
     ILog logger,
     IWebsite website)
 {
     _dictionary = dictionary;
     _client     = client;
     _document   = document;
     _logger     = logger;
     _website    = website;
 }