Table of Contents

Interface IOpenIddictTokenStoreResolver

Namespace
OpenIddict.Abstractions
Assembly
OpenIddict.Abstractions.dll

Exposes a method allowing to resolve a token store.

public interface IOpenIddictTokenStoreResolver

Methods

Get<TToken>()

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

IOpenIddictTokenStore<TToken> Get<TToken>() where TToken : class

Returns

IOpenIddictTokenStore<TToken>

An IOpenIddictTokenStore<TToken>.

Type Parameters

TToken

The type of the Token entity.