Example #1
0
        public ActionInformation GetActionInformation(string controllerName, string actionName)
        {
            ControllerInformation controllerInformation = this.GetControllerInformation(controllerName);

            if (controllerInformation != null)
            {
                return(controllerInformation.GetActionInformation(actionName));
            }

            return(null);
        }
Example #2
0
 public ActionInformation(ControllerInformation controllerInformation)
 {
     this.ControllerInformation = controllerInformation;
 }