Esempio n. 1
0
 public ProxyRequestHandler(HttpStack httpStack, String localResource, Boolean proxyingEnabled)
 {
     _httpStack       = httpStack;
     _localResource   = localResource;
     _proxyingEnabled = proxyingEnabled;
     _uri             = "/" + localResource + "/";
 }
Esempio n. 2
0
 public ProxyHttpServer(Int32 httpPort)
 {
     _httpStack = new HttpStack(httpPort);
     _httpStack.RequestHandler = HandleRequest;
     _proxyEndPoint            = new ProxyEndPoint(this);
 }
Esempio n. 3
0
 public ProxyHttpServer(Int32 httpPort)
 {
     _httpStack = new HttpStack(httpPort);
     _httpStack.RequestHandler = HandleRequest;
 }
Esempio n. 4
0
 public ProxyHttpServer(Int32 httpPort)
 {
     _httpStack = new HttpStack(httpPort);
     _httpStack.RequestHandler = HandleRequest;
     _proxyEndPoint = new ProxyEndPoint(this);
 }
Esempio n. 5
0
 public ProxyHttpServer(Int32 httpPort)
 {
     _httpStack = new HttpStack(httpPort);
     _httpStack.RequestHandler = HandleRequest;
 }
Esempio n. 6
0
 public ProxyRequestHandler(HttpStack httpStack, String localResource, Boolean proxyingEnabled)
 {
     _httpStack = httpStack;
     _localResource = localResource;
     _proxyingEnabled = proxyingEnabled;
     _uri = "/" + localResource + "/";
 }