public HttpListenerContextAdpater(HttpListenerContext ctx, IRaveHttpnConfiguration configuration)
 {
     this.ctx           = ctx;
     this.configuration = configuration;
     Request            = new HttpListenerRequestAdapter(ctx.Request);
     ResponseInternal   = new HttpListenerResponseAdapter(ctx.Response);
 }
        public HttpListenerContextAdpater(HttpListenerContext ctx, IRaveHttpnConfiguration configuration)
		{
			this.ctx = ctx;
			this.configuration = configuration;
			Request = new HttpListenerRequestAdapter(ctx.Request);
			ResponseInternal = new HttpListenerResponseAdapter(ctx.Response);
		}