Пример #1
0
 public Controller(HTTPMethod method, RoutePatternMatch route, Response res) :                               this(method.ToString(), route, route.CreateCallback(res))
 {
 }
Пример #2
0
 public Controller(string method, RoutePatternMatch route, Response res) :                                   this(method, route, route.CreateCallback(res))
 {
 }
Пример #3
0
 public Controller(HTTPMethod method, RoutePatternMatch route, RouteCallback_D callback) :                   this(method.ToString(), route, route.CreateCallback(callback))
 {
 }
Пример #4
0
 public Controller(string method, RoutePatternMatch route, RouteCallback_D callback) :                       this(method, route, route.CreateCallback(callback))
 {
 }