コード例 #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
ファイル: ProxyHttpServer.cs プロジェクト: zpfcaca/CoAP.NET
 public ProxyHttpServer(Int32 httpPort)
 {
     _httpStack = new HttpStack(httpPort);
     _httpStack.RequestHandler = HandleRequest;
 }
コード例 #4
0
ファイル: ProxyHttpServer.cs プロジェクト: rlusian1/CoAP.NET
 public ProxyHttpServer(Int32 httpPort)
 {
     _httpStack = new HttpStack(httpPort);
     _httpStack.RequestHandler = HandleRequest;
     _proxyEndPoint = new ProxyEndPoint(this);
 }
コード例 #5
0
ファイル: ProxyHttpServer.cs プロジェクト: vjine/CoAP.NET
 public ProxyHttpServer(Int32 httpPort)
 {
     _httpStack = new HttpStack(httpPort);
     _httpStack.RequestHandler = HandleRequest;
 }
コード例 #6
0
ファイル: HttpStack.cs プロジェクト: rlusian1/CoAP.NET
 public ProxyRequestHandler(HttpStack httpStack, String localResource, Boolean proxyingEnabled)
 {
     _httpStack = httpStack;
     _localResource = localResource;
     _proxyingEnabled = proxyingEnabled;
     _uri = "/" + localResource + "/";
 }