Interface ICoreBackOfficeSignInManager
Provides core sign-in functionality for back office users.
Namespace: Umbraco.Cms.Core.Security
Assembly: Umbraco.Core.dll
Syntax
public interface ICoreBackOfficeSignInManager
Methods
View SourceCreateUserPrincipalAsync(Guid)
Creates a System.Security.Claims.ClaimsPrincipal for the specified user.
Declaration
Task<ClaimsPrincipal?> CreateUserPrincipalAsync(Guid userKey)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | userKey | The unique key of the user. |
Returns
| Type | Description |
|---|---|
| Task<ClaimsPrincipal> | A task that resolves to the System.Security.Claims.ClaimsPrincipal for the user, or |