Exemplo n.º 1
0
 internal RestControllerRequestHandler(string urlPrefix)
 {
     _urlPrefix            = urlPrefix;
     _restMethodCollection = new List <RestControllerMethodInfo>();
     _responseFactory      = new RestResponseFactory();
     _methodExecuteFactory = new RestControllerMethodExecutorFactory();
 }
Exemplo n.º 2
0
 internal RestControllerRequestHandler()
 {
     _restMethodCollection = ImmutableArray <RestControllerMethodInfo> .Empty;
     _responseFactory      = new RestResponseFactory();
     _methodExecuteFactory = new RestControllerMethodExecutorFactory();
 }