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; } }