Interface IAuthorizationParametersMessageStore
- Namespace
 - Duende.IdentityServer.Stores
 
- Assembly
 - Duende.IdentityServer.dll
 
Interface for authorization request messages that are sent from the authorization endpoint to the login and consent UI.
public interface IAuthorizationParametersMessageStore
  Methods
DeleteAsync(string)
Deletes the authorization parameters.
Task DeleteAsync(string id)
  Parameters
idstringThe identifier.
Returns
ReadAsync(string)
Reads the authorization parameters.
Task<Message<IDictionary<string, string[]>>> ReadAsync(string id)
  Parameters
idstringThe identifier.
Returns
- Task<Message<IDictionary<string, string[]>>>
 
WriteAsync(Message<IDictionary<string, string[]>>)
Writes the authorization parameters.
Task<string> WriteAsync(Message<IDictionary<string, string[]>> message)
  Parameters
messageMessage<IDictionary<string, string[]>>The message.