Woopsa.RouteMapper.RouteMapper C# (CSharp) 메소드

RouteMapper() 개인적인 메소드

private RouteMapper ( string route, HTTPMethod methods, IHTTPRouteHandler handler ) : System.Collections.Generic
route string
methods HTTPMethod
handler IHTTPRouteHandler
리턴 System.Collections.Generic
        internal RouteMapper(string route, HTTPMethod methods, IHTTPRouteHandler handler)
        {
            _route = WoopsaConst.UrlSeparator + route.Trim(WoopsaConst.UrlSeparator);
            _methods = methods;
            _handler = handler;
            _processors = new List<PostRouteProcessor>();
        }