public AuthStateHandler(
     ILoggerFactory loggerFactory,
     AuthStateCache cache)
     : base(loggerFactory)
 {
     Cache = cache;
 }
Exemplo n.º 2
0
 public AccessState(AuthStateCache cache, NavigationManager navigationManager, AuthenticationStateProvider authenticationState)
 {
     _cache               = cache;
     _navigationManager   = navigationManager;
     _authenticationState = authenticationState;
 }