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