Exemple #1
0
 public BasicResponse(BasicRequest requestContext)
 {
     this.requestContext = requestContext;
     this.Headers        = new Dictionary <string, string>();
     this.Items          = new Dictionary <string, object>();
 }
Exemple #2
0
 public BasicHttpResponse(BasicRequest requestContext) : base(requestContext)
 {
     Cookies = new Cookies(this);
 }