Interface IMemberClientCredentialsManager
Provides an interface for managing client credentials associated with members.
Namespace: Umbraco.Cms.Core.Security
Assembly: Umbraco.Infrastructure.dll
Syntax
public interface IMemberClientCredentialsManager
Methods
View SourceFindMemberAsync(string)
Asynchronously finds a member associated with the specified client ID.
Declaration
Task<MemberIdentityUser?> FindMemberAsync(string clientId)
Parameters
| Type | Name | Description |
|---|---|---|
| string | clientId | The client ID to search for. |
Returns
| Type | Description |
|---|---|
| Task<MemberIdentityUser> | A task representing the asynchronous operation. The result contains the MemberIdentityUser if found; otherwise, |
GetAllAsync()
Asynchronously retrieves all member client credentials.
Declaration
Task<IEnumerable<MemberClientCredentials>> GetAllAsync()
Returns
| Type | Description |
|---|---|
| Task<IEnumerable<MemberClientCredentials>> | A task representing the asynchronous operation, with a result of an enumerable collection of MemberClientCredentials. |