App.Web.Areas.Account.Controllers.ExternalLoginController.Index C# (CSharp) 메소드

Index() 개인적인 메소드

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