Interface IForgotPasswordUriProvider
Provides functionality to create forgot password URIs for users.
Namespace: Umbraco.Cms.Core.Security
Assembly: Umbraco.Core.dll
Syntax
public interface IForgotPasswordUriProvider
Methods
View SourceCreateForgotPasswordUriAsync(IUser)
Creates a forgot password URI for the specified user.
Declaration
Task<Attempt<Uri, UserOperationStatus>> CreateForgotPasswordUriAsync(IUser user)
Parameters
| Type | Name | Description |
|---|---|---|
| IUser | user | The user to create the forgot password URI for. |
Returns
| Type | Description |
|---|---|
| Task<Attempt<Uri, UserOperationStatus>> | An attempt containing the generated URI or an error status. |