Introduction to OIDC Server
Implemented StandardsTechnical Requirements
Abblix.Oidc.Server
Abblix.Oidc.Server.Features.BackChannelAuthentication.InterfacesIAuthenticationCompletionHandlerIAuthenticationRequestIdGeneratorIBackChannelGrantProcessorIBackChannelLongPollingServiceIBackChannelNotificationRequestIBackChannelRequestStorageINotificationDeliveryServiceIUserDeviceAuthenticationHandler
IAuthenticationRequestIdGenerator Interface
Defines the contract for generating unique authentication request identifiers in the context of a backchannel or other authentication flows. This identifier is used to track and reference individual authentication requests.
public interface IAuthenticationRequestIdGeneratorDerived
↳ AuthenticationRequestIdGenerator
Methods
IAuthenticationRequestIdGenerator.GenerateAuthenticationRequestId() Method
Generates a unique authentication request ID, which is used to identify a specific authentication request during the backchannel authentication flow or similar processes.
string GenerateAuthenticationRequestId();Returns
System.String
The generated authentication request ID as a string.