Early Preview
This is currently very much a preview. Please feel free to try things out,
but don't be upset if anything is not yet working. Feedback is welcome over on our
GitHub Dicussions page.
interface Duende.​IdentityServer.​Stores.​IPersistedGrantStore
Assembly: Duende.IdentityServer.Storage
Interface for persisting any type of grant.
Methods
grant
The grant.
System.​Threading.​Tasks.​Task<​Models.​PersistedGrant>
GetAsync​(string key)
Gets the grant.
key
The key.
System.​Threading.​Tasks.​Task<​System.​Collections.​Generic.​IEnumerable<​Models.​PersistedGrant>>
GetAllAsync​(PersistedGrantFilter filter)
Gets all grants based on the filter.
filter
The filter.
RemoveAsync​(string key)
Removes the grant by key.
key
The key.
filter
The filter.