6 implementations of IAuthenticationRequestHandler
Microsoft.AspNetCore.Authentication (1)
RemoteAuthenticationHandler.cs (1)
18public abstract class RemoteAuthenticationHandler<TOptions> : AuthenticationHandler<TOptions>, IAuthenticationRequestHandler
Microsoft.AspNetCore.Authentication.Core.Test (2)
AuthenticationServiceTests.cs (2)
341private class UberHandler : IAuthenticationHandler, IAuthenticationRequestHandler, IAuthenticationSignInHandler, IAuthenticationSignOutHandler 379private class ForbidHandler : IAuthenticationHandler, IAuthenticationRequestHandler, IAuthenticationSignInHandler, IAuthenticationSignOutHandler
Microsoft.AspNetCore.Authentication.Negotiate (1)
NegotiateHandler.cs (1)
21public class NegotiateHandler : AuthenticationHandler<NegotiateOptions>, IAuthenticationRequestHandler
Microsoft.AspNetCore.Authentication.Test (2)
AuthenticationMiddlewareTests.cs (2)
240private class StatusCodeHandler : IAuthenticationRequestHandler 329private class SkipHandler : IAuthenticationRequestHandler
3 references to IAuthenticationRequestHandler
Microsoft.AspNetCore.Authentication (2)
AuthenticationMiddleware.cs (2)
52var handler = await handlers.GetHandlerAsync(context, scheme.Name) as IAuthenticationRequestHandler;
Microsoft.AspNetCore.Authentication.Core (1)
AuthenticationSchemeProvider.cs (1)
149if (typeof(IAuthenticationRequestHandler).IsAssignableFrom(scheme.HandlerType))