Class NoopBackOfficeUserPasswordChecker
Inheritance
object
Namespace: Umbraco.Cms.Web.Common.Security
Assembly: Umbraco.Web.Common.dll
Syntax
public class NoopBackOfficeUserPasswordChecker : IBackOfficeUserPasswordChecker
Methods
View SourceCheckPasswordAsync(BackOfficeIdentityUser, string)
Checks a password for a user
Declaration
public Task<BackOfficeUserPasswordCheckerResult> CheckPasswordAsync(BackOfficeIdentityUser user, string password)
Parameters
| Type | Name | Description |
|---|---|---|
| BackOfficeIdentityUser | user | |
| string | password |
Returns
| Type | Description |
|---|---|
| Task<BackOfficeUserPasswordCheckerResult> |
Remarks
This will allow a developer to auto-link a local account which is required if the user queried doesn't exist locally. The user parameter will always contain the username, if the user doesn't exist locally, the other properties will not be filled in. A developer can then create a local account by filling in the properties and using UserManager.CreateAsync