public PortlessWebClient(WebHost host, BrowserVersion browserVersion)
     : base(browserVersion)
 {
     WebConnection = new PortlessWebConnection(host);
 }
 public PortlessWebClient(WebHost host, HtmlWebClient webClient)
     : base(webClient)
 {
     WebConnection = new PortlessWebConnection(host);
 }
 public PortlessWebClient(WebHost host)
 {
     WebConnection = new PortlessWebConnection(host);
 }