BB.UI.Web.MVC.Controllers.AccountController.ExternalLogin C# (CSharp) Method

ExternalLogin() private method

private ExternalLogin ( string provider, string returnUrl ) : System.Web.Mvc.ActionResult
provider string
returnUrl string
return System.Web.Mvc.ActionResult
        public ActionResult ExternalLogin(string provider, string returnUrl)
        {
            // Request a redirect to the external login provider
            return new ChallengeResult(provider, Url.Action("ExternalLoginCallback", "Account", new { ReturnUrl = returnUrl }));
        }