Ejemplo n.º 1
0
 public WebDriver(int threads, FreeThread handler) : base(threads, handler)
 {
     Init();
 }
Ejemplo n.º 2
0
 public PlainHttp(int threads, FreeThread handler) : base(threads, handler)
 {
     _client         = new HttpClient();
     _client.Timeout = TimeSpan.FromSeconds(60);
 }
Ejemplo n.º 3
0
 public SearchBase(int threads, FreeThread handler)
 {
     FreeThreadHandler = handler;
     _threads          = threads;
 }