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