コード例 #1
0
ファイル: HttpResponseDelegate.cs プロジェクト: ruxo/kayak
 public HttpResponseDelegate(bool prohibitBody, bool shouldKeepAlive, Action closeConnection)
 {
     state = new HttpResponseDelegateState(prohibitBody, shouldKeepAlive);
     this.closeConnection = closeConnection;
 }
コード例 #2
0
 public HttpResponseDelegate(bool prohibitBody, bool shouldKeepAlive, bool expectContinue, Action closeConnection)
 {
     state = HttpResponseDelegateState.Create(prohibitBody, shouldKeepAlive, expectContinue);
     this.closeConnection = closeConnection;
 }
コード例 #3
0
 public HttpResponseDelegate(bool prohibitBody, bool shouldKeepAlive, Action closeConnection)
 {
     state = new HttpResponseDelegateState(prohibitBody, shouldKeepAlive);
     this.closeConnection = closeConnection;
 }