3 implementations of SendPasswordResetLinkAsync
Microsoft.AspNetCore.Identity (1)
src\Shared\DefaultMessageEmailSender.cs (1)
15
public Task
SendPasswordResetLinkAsync
(TUser user, string email, string resetLink) =>
Microsoft.AspNetCore.Identity.FunctionalTests (1)
MapIdentityApiTests.cs (1)
1536
public Task
SendPasswordResetLinkAsync
(ApplicationUser user, string email, string resetLink) =>
Microsoft.AspNetCore.Identity.UI (1)
src\Shared\DefaultMessageEmailSender.cs (1)
15
public Task
SendPasswordResetLinkAsync
(TUser user, string email, string resetLink) =>
2 references to SendPasswordResetLinkAsync
Microsoft.AspNetCore.Identity.UI (2)
Areas\Identity\Pages\V4\Account\ForgotPassword.cshtml.cs (1)
83
await _emailSender.
SendPasswordResetLinkAsync
(user, Input.Email, HtmlEncoder.Default.Encode(callbackUrl));
Areas\Identity\Pages\V5\Account\ForgotPassword.cshtml.cs (1)
83
await _emailSender.
SendPasswordResetLinkAsync
(user, Input.Email, HtmlEncoder.Default.Encode(callbackUrl));