AreasExample.Areas.Admin.Controllers.T4MVC_ProfileController.Show C# (CSharp) Метод

Show() публичный Метод

public Show ( string username ) : System.Web.Mvc.ViewResult
username string
Результат System.Web.Mvc.ViewResult
        public override System.Web.Mvc.ViewResult Show(string username) {
            var callInfo = new T4MVC_ViewResult(Area, Name, ActionNames.Show);
            callInfo.RouteValueDictionary.Add("username", username);
            return callInfo;
        }