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

            CommunicateWithServer();
        }