Beispiel #1
0
 public CustomHttpResponse(CustomHttpContext customHttpContext, HttpListenerContext ctx)
 {
     this.customHttpContext = customHttpContext;
     this.ctx = ctx;
 }
Beispiel #2
0
 public CustomHttpRequest(CustomHttpContext customHttpContext, HttpListenerContext ctx)
 {
     this.customHttpContext = customHttpContext;
     Method = ctx.Request.HttpMethod;
     Path   = ctx.Request.RawUrl;
 }