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