Table of Contents

Interface IOpenIddictApplicationStoreResolver

Namespace
OpenIddict.Abstractions
Assembly
OpenIddict.Abstractions.dll

Exposes a method allowing to resolve an application store.

public interface IOpenIddictApplicationStoreResolver

Methods

Get<TApplication>()

Returns an application store compatible with the specified application type or throws an InvalidOperationException if no store can be built using the specified type.

IOpenIddictApplicationStore<TApplication> Get<TApplication>() where TApplication : class

Returns

IOpenIddictApplicationStore<TApplication>

An IOpenIddictApplicationStore<TApplication>.

Type Parameters

TApplication

The type of the Application entity.