Blog.Admin.Web.Controllers.AccountController.LinkLogin C# (CSharp) 메소드

LinkLogin() 개인적인 메소드

private LinkLogin ( string provider ) : System.Web.Mvc.ActionResult
provider string
리턴 System.Web.Mvc.ActionResult
        public ActionResult LinkLogin(string provider)
        {
            // Request a redirect to the external login provider to link a login for the current user
            return new ChallengeResult(provider, Url.Action("LinkLoginCallback", "Account"), User.Identity.GetUserId());
        }