BookOnline.Controllers.AccountController.ExternalLogin C# (CSharp) 메소드

ExternalLogin() 개인적인 메소드

private ExternalLogin ( string provider, string returnUrl ) : System.Web.Mvc.ActionResult
provider string
returnUrl string
리턴 System.Web.Mvc.ActionResult
        public ActionResult ExternalLogin(string provider, string returnUrl)
        {
            return new ExternalLoginResult(provider, Url.Action("ExternalLoginCallback", new { ReturnUrl = returnUrl }));
        }