ClourWars.Game.Controllers.PlayerController.CreateProfile C# (CSharp) Метод

CreateProfile() приватный Метод

private CreateProfile ( ) : System.Web.Mvc.ActionResult
Результат System.Web.Mvc.ActionResult
        public ActionResult CreateProfile()
        {
            var profile = ProfileHelper.GetPlayerProfile(ProfileHelper.GetIdentity);
            if (profile == null)
                profile = new Player { DisplayName = string.Empty };
            return PartialView(profile);
        }

Same methods

PlayerController::CreateProfile ( System.Guid id, string displayName, string avatar ) : System.Web.Mvc.ActionResult