상속: IHttpResourceHandler
예제 #1
0
 private IHttpResourceHandler AddHttpHandler(string method, string path)
 {
     var httpHandler = new HttpResourceHandler(method, path, this);
     _resourceHandlers.Add(httpHandler);
     return httpHandler;
 }