Closed
Description
It would be nice if the AuthenticationHandler provided an event or events.
These are available on most, if not all, of the other AspNetCore authentication providers. This feature was also available in the old .NET: WindowsAuthenticationModule.Authenticate Event
This would enable you to perform one-time actions when authentication has occurred. The unsavory alternative is to add middleware that must check on every request to see if authentication has occurred and set/check a flag indicating that the desired actions have not been already been ran.