示例#1
0
 public HttpContextImpl(IHttpChannel channel, HttpServerSettings settings)
 {
     ServerSettings = settings;
     _request = new HttpRequestImpl(this, channel, settings);
     _response = new HttpResponseImpl(channel);
 }
示例#2
0
 public HttpContextImpl(IHttpChannel channel, HttpServerSettings settings)
 {
     _request  = new HttpRequestImpl(this, channel, settings);
     _response = new HttpResponseImpl(channel);
 }