Beispiel #1
0
 public void SetState(IHttpHandlerState state)
 {
     _currentState = state;
 }
Beispiel #2
0
 public HttpServerHandler(HttpConfig config)
 {
     _config = config;
     //初始为http
     _currentState = new HttpState(this, _config);
 }