Proposal for #34 that adds the possibility to add asynchronous membership providers. Two new interfaces have been added:
A new base membership provider that is the base for both (sync and async) membership providers (so that registering it in the IoC container remains basically the same)
A new IAsyncMembershipProvider that offers an async endpoint
The PassCommandHandler checks the type of membership provider and performs either a synchronous or an asynchronous call to validate username and password.
Proposal for #34 that adds the possibility to add asynchronous membership providers. Two new interfaces have been added:
IAsyncMembershipProvider
that offers an async endpointThe
PassCommandHandler
checks the type of membership provider and performs either a synchronous or an asynchronous call to validate username and password.