AccountVerification.Web.Controllers.AccountController.ResendVerificationCode C# (CSharp) Method

ResendVerificationCode() private method

private ResendVerificationCode ( string email ) : System.Web.Mvc.ActionResult
email string
return System.Web.Mvc.ActionResult
        public ActionResult ResendVerificationCode(string email)
        {
            return View(new ResendVerifyCodeViewModel() {Email = email});
        }

Same methods

AccountController::ResendVerificationCode ( AccountVerification.Web.Models.ResendVerifyCodeViewModel model ) : Task