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.​IReferenceTokenStore
Assembly: Duende.IdentityServer.Storage
Interface for reference token storage
Methods
System.​Threading.​Tasks.​Task<​string>
StoreReferenceTokenAsync​(Models.​Token token)
Stores the reference token.
token
The token.
System.​Threading.​Tasks.​Task<​Models.​Token>
GetReferenceTokenAsync​(string handle)
Gets the reference token.
handle
The handle.
RemoveReferenceTokenAsync​(string handle)
Removes the reference token.
handle
The handle.
RemoveReferenceTokensAsync​(string subjectId,
string clientId,
string sessionId = null)
Removes the reference tokens.
subjectId
The subject identifier.
clientId
The client identifier.
sessionId
The session identifier.