static void Main(string[] args) { if (args.Length == 1 && args[0].Equals("start")) { HttpsServer httpsServer = new HttpsServer(443, 1000, 1); httpsServer.Start(); } }
public HttpClient(HttpsServer httpServer) { this.httpServer = httpServer; CommunicateWithServer(); }