UCosmic.Www.Mvc.Areas.Common.Controllers.SkinsRouter.ChangeRoute.ChangeRoute C# (CSharp) Method

ChangeRoute() public method

public ChangeRoute ( ) : System
return System
            public ChangeRoute()
            {
                Url = "as/{*skinContext}";
                DataTokens = new RouteValueDictionary(new { area = Area });
                Defaults = new RouteValueDictionary(new
                {
                    controller = Controller,
                    action = MVC.Common.Skins.ActionNames.Change,
                });
                Constraints = new RouteValueDictionary(new
                {
                    httpMethod = new HttpMethodConstraint("GET"),
                });
            }
        }
SkinsRouter.ChangeRoute