public HttpServerTransactionDelegate(
     IHttpResponseDelegateFactory responseDelegateFactory,
     IHttpRequestDelegate requestDelegate)
 {
     this.responseDelegateFactory = responseDelegateFactory;
     this.requestDelegate = requestDelegate;
 }
 public HttpServerTransactionDelegate(
     IPAddress remoteAddress,
     IHttpResponseDelegateFactory responseDelegateFactory, 
     IHttpRequestDelegate requestDelegate)
 {
     this.remoteAddress = remoteAddress;
     this.responseDelegateFactory = responseDelegateFactory;
     this.requestDelegate = requestDelegate;
 }
Exemple #3
0
 public HttpServerTransactionDelegate(
     IPAddress remoteAddress,
     IHttpResponseDelegateFactory responseDelegateFactory,
     IHttpRequestDelegate requestDelegate)
 {
     this.remoteAddress           = remoteAddress;
     this.responseDelegateFactory = responseDelegateFactory;
     this.requestDelegate         = requestDelegate;
 }
 public IosHttpServerDelegate(IHttpRequestDelegate requestDelegate, IConnectionWatcher connWatcher)
 {
     this.requestDelegate = requestDelegate;
     this.responseFactory = new HttpResponseDelegateFactory();
     this.connWatcher=connWatcher;
 }
Exemple #5
0
 public HttpServerDelegate(IHttpRequestDelegate requestDelegate)
 {
     this.requestDelegate = requestDelegate;
     this.responseFactory = new HttpResponseDelegateFactory();
 }
 public HttpServerDelegate(IHttpRequestDelegate requestDelegate)
 {
     this.requestDelegate = requestDelegate;
     this.responseFactory = new HttpResponseDelegateFactory();
 }
 public IosHttpServerDelegate(IHttpRequestDelegate requestDelegate, IConnectionWatcher connWatcher)
 {
     this.requestDelegate = requestDelegate;
     this.responseFactory = new HttpResponseDelegateFactory();
     this.connWatcher     = connWatcher;
 }