Ejemplo n.º 1
0
 public HttpResponseDelegate(bool prohibitBody, bool shouldKeepAlive, Action closeConnection)
 {
     state = new HttpResponseDelegateState(prohibitBody, shouldKeepAlive);
     this.closeConnection = closeConnection;
 }
Ejemplo n.º 2
0
 public HttpResponseDelegate(bool prohibitBody, bool shouldKeepAlive, bool expectContinue, Action closeConnection)
 {
     state = HttpResponseDelegateState.Create(prohibitBody, shouldKeepAlive, expectContinue);
     this.closeConnection = closeConnection;
 }
 public HttpResponseDelegate(bool prohibitBody, bool shouldKeepAlive, Action closeConnection)
 {
     state = new HttpResponseDelegateState(prohibitBody, shouldKeepAlive);
     this.closeConnection = closeConnection;
 }