public HttpServer(int sslPort, int port) { Routing = new RoutingCollection(this); Port = port; SslPort = sslPort; }
public HttpServer() { Routing = new RoutingCollection(this); }