public HttpListenerContextAdapter(HttpListenerContext context)
 {
     _context = context;
     Request = new HttpListenerRequestAdapter(_context.Request);
     Response = new HttpListenerResponseAdapter(_context.Response);
 }
 public HttpListenerContextAdapter(HttpListenerContext context)
 {
     _context = context;
     Request  = new HttpListenerRequestAdapter(_context.Request);
     Response = new HttpListenerResponseAdapter(_context.Response);
 }