コード例 #1
0
 public HttpServerTransactionDelegate(
     IHttpResponseDelegateFactory responseDelegateFactory,
     IHttpRequestDelegate requestDelegate)
 {
     this.responseDelegateFactory = responseDelegateFactory;
     this.requestDelegate = requestDelegate;
 }
コード例 #2
0
 public HttpServerTransactionDelegate(
     IPAddress remoteAddress,
     IHttpResponseDelegateFactory responseDelegateFactory, 
     IHttpRequestDelegate requestDelegate)
 {
     this.remoteAddress = remoteAddress;
     this.responseDelegateFactory = responseDelegateFactory;
     this.requestDelegate = requestDelegate;
 }
コード例 #3
0
 public HttpServerTransactionDelegate(
     IPAddress remoteAddress,
     IHttpResponseDelegateFactory responseDelegateFactory,
     IHttpRequestDelegate requestDelegate)
 {
     this.remoteAddress           = remoteAddress;
     this.responseDelegateFactory = responseDelegateFactory;
     this.requestDelegate         = requestDelegate;
 }
コード例 #4
0
ファイル: IosHttpServer.cs プロジェクト: bux578/SnowWhite.NET
 public IosHttpServerDelegate(IHttpRequestDelegate requestDelegate, IConnectionWatcher connWatcher)
 {
     this.requestDelegate = requestDelegate;
     this.responseFactory = new HttpResponseDelegateFactory();
     this.connWatcher=connWatcher;
 }
コード例 #5
0
ファイル: HttpServer.cs プロジェクト: paulecoyote/kayak
 public HttpServerDelegate(IHttpRequestDelegate requestDelegate)
 {
     this.requestDelegate = requestDelegate;
     this.responseFactory = new HttpResponseDelegateFactory();
 }
コード例 #6
0
 public HttpServerDelegate(IHttpRequestDelegate requestDelegate)
 {
     this.requestDelegate = requestDelegate;
     this.responseFactory = new HttpResponseDelegateFactory();
 }
コード例 #7
0
 public IosHttpServerDelegate(IHttpRequestDelegate requestDelegate, IConnectionWatcher connWatcher)
 {
     this.requestDelegate = requestDelegate;
     this.responseFactory = new HttpResponseDelegateFactory();
     this.connWatcher     = connWatcher;
 }