Table of Contents

Interface IAuthorizeInteractionResponseGenerator

Namespace
Duende.IdentityServer.ResponseHandling
Assembly
Duende.IdentityServer.dll

Interface for determining if user must login or consent when making requests to the authorization endpoint.

public interface IAuthorizeInteractionResponseGenerator

Methods

ProcessInteractionAsync(ValidatedAuthorizeRequest, ConsentResponse?)

Processes the interaction logic.

Task<InteractionResponse> ProcessInteractionAsync(ValidatedAuthorizeRequest request, ConsentResponse? consent = null)

Parameters

request ValidatedAuthorizeRequest

The request.

consent ConsentResponse

The consent.

Returns

Task<InteractionResponse>