Пример #1
0
 public RecentQuestionsGetter(JsonStore store, IWebRequester web, string[] tags, string site = "stackoverflow", int pagesize = 30)
 {
     _store   = store;
     _web     = web;
     Tags     = tags;
     Site     = site;
     Pagesize = pagesize;
 }
 public ThrottleChecker(JsonStore store)
 {
     _store = store;
 }
Пример #3
0
 public RecentQuestionsGetter(JsonStore store, IWebRequester web, string site = "stackoverflow", int pagesize = 30) :
     this(store, web, new string[0], site)
 {
 }