public ActionInformation GetActionInformation(string controllerName, string actionName) { ControllerInformation controllerInformation = this.GetControllerInformation(controllerName); if (controllerInformation != null) { return(controllerInformation.GetActionInformation(actionName)); } return(null); }
public ActionInformation(ControllerInformation controllerInformation) { this.ControllerInformation = controllerInformation; }