Exemplo n.º 1
0
        public WebServer(ClientInfoAdd clientInfoAdd)
        {
            httpListner = new HttpListener();
            httpListner.Prefixes.Add(String.Format("http://{0}:{1}/main/", SERVER_URL, SERVER_PORT));

            methods = new RequestMethods(clientInfoAdd);
        }
Exemplo n.º 2
0
 public RequestMethods(ClientInfoAdd clientInfoAdd)
 {
     this.clientInfoAdd = clientInfoAdd;
 }