Skip to content
We just launched Duende IdentityServer v7.2.0 and BFF v3.0. Check it out!

Client Store

Used to dynamically load client configuration.

/// <summary>
/// Retrieval of client configuration
/// </summary>
public interface IClientStore
{
/// <summary>
/// Finds a client by id
/// </summary>
/// <param name="clientId">The client id</param>
/// <returns>The client</returns>
Task<Client> FindClientByIdAsync(string clientId);
}