Interface IEndpointRouter
- Namespace
- Duende.IdentityServer.Hosting
- Assembly
- Duende.IdentityServer.dll
The endpoint router is responsible for mapping incoming http requests onto IEndpointHandlers, for the protocol endpoints that IdentityServer supports.
public interface IEndpointRouter
Methods
Find(HttpContext)
Finds a matching IEndpointHandler for an incoming http request.
IEndpointHandler? Find(HttpContext context)
Parameters
context
HttpContextThe HTTP context.
Returns
- IEndpointHandler
The handler to process a protocol request, or null, if the incoming http request is not a protocol request.