UCosmic.Www.Mvc.Areas.People.Controllers.PersonInfoRouter.WithLastNameRoute.WithLastNameRoute C# (CSharp) Method

WithLastNameRoute() public method

public WithLastNameRoute ( ) : System
return System
            public WithLastNameRoute()
            {
                Url = "people/with-last-name";
                DataTokens = new RouteValueDictionary(new { area = Area });
                Defaults = new RouteValueDictionary(new
                {
                    controller = Controller,
                    action = MVC.People.PersonInfo.ActionNames.WithLastName,
                });
                Constraints = new RouteValueDictionary(new
                {
                    httpMethod = new HttpMethodConstraint("POST"),
                });
            }
        }
PersonInfoRouter.WithLastNameRoute