View Source
Interface IBackOfficeUserClientCredentialsManager
Assembly: Umbraco.Infrastructure.dll
Syntax
public interface IBackOfficeUserClientCredentialsManager
Methods
View Source
DeleteAsync(Guid, String)
Declaration
Task<Attempt<BackOfficeUserClientCredentialsOperationStatus>> DeleteAsync(Guid userKey, string clientId)
Parameters
Type |
Name |
Description |
Guid |
userKey |
|
System.String |
clientId |
|
Returns
View Source
FindUserAsync(String)
Declaration
Task<BackOfficeIdentityUser> FindUserAsync(string clientId)
Parameters
Type |
Name |
Description |
System.String |
clientId |
|
Returns
View Source
GetClientIdsAsync(Guid)
Declaration
Task<IEnumerable<string>> GetClientIdsAsync(Guid userKey)
Parameters
Type |
Name |
Description |
Guid |
userKey |
|
Returns
Type |
Description |
Task<IEnumerable<System.String>> |
|
View Source
SaveAsync(Guid, String, String)
Declaration
Task<Attempt<BackOfficeUserClientCredentialsOperationStatus>> SaveAsync(Guid userKey, string clientId, string clientSecret)
Parameters
Type |
Name |
Description |
Guid |
userKey |
|
System.String |
clientId |
|
System.String |
clientSecret |
|
Returns