Exemplo n.º 1
0
 private void StartServer(string root)
 {
     if (_httpServer == null)
     {
         _httpServer = new FuseeHttpServer(root, 4655); // HEX: FU
         Thread thread = new Thread(_httpServer.listen);
         thread.Start();
     }
     else
     {
         _httpServer.HtDocsRoot = root;
     }
 }
Exemplo n.º 2
0
 private void StartServer(string root)
 {
     if (_httpServer == null)
     {
         _httpServer = new FuseeHttpServer(root, 4655); // HEX: FU
         Thread thread = new Thread(_httpServer.listen);
         thread.Start();
     }
     else
     {
         _httpServer.HtDocsRoot = root;
     }
 }