コード例 #1
0
ファイル: BasicResponse.cs プロジェクト: jre08/YAFNET
 public BasicResponse(BasicRequest requestContext)
 {
     this.requestContext = requestContext;
     this.Headers        = new Dictionary <string, string>();
     this.Items          = new Dictionary <string, object>();
 }
コード例 #2
0
 public BasicHttpResponse(BasicRequest requestContext) : base(requestContext)
 {
     Cookies = new Cookies(this);
 }