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; }
public IosHttpServerDelegate(IHttpRequestDelegate requestDelegate, IConnectionWatcher connWatcher) { this.requestDelegate = requestDelegate; this.responseFactory = new HttpResponseDelegateFactory(); this.connWatcher=connWatcher; }
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; }