public IAuthenticationResult Authenticate(IInternalDataStore dataStore, IApplication application, IAuthenticationRequest request, IRetrievalOptions<IAuthenticationResult> options) { Validate(dataStore, application, request); if (request is UsernamePasswordRequest) { return new BasicAuthenticator(dataStore).Authenticate(application.Href, request, options); } throw new InvalidOperationException($"The AuthenticationRequest {request.GetType().Name} is not supported by this implementation."); }
public IAuthenticationResult Authenticate(IInternalDataStore dataStore, IApplication application, IAuthenticationRequest request, IRetrievalOptions <IAuthenticationResult> options) { Validate(dataStore, application, request); if (request is UsernamePasswordRequest) { return(new BasicAuthenticator(dataStore).Authenticate(application.Href, request, options)); } throw new InvalidOperationException($"The AuthenticationRequest {request.GetType().Name} is not supported by this implementation."); }