Search Results for

    Show / Hide Table of Contents
    View Source

    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 Source

    FindMemberAsync(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, null.

    View Source

    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.

    • View Source
    In this article
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX