public AuthStateHandler(
     ILoggerFactory loggerFactory,
     AuthStateCache cache)
     : base(loggerFactory)
 {
     Cache = cache;
 }
Пример #2
0
 public AccessState(AuthStateCache cache, NavigationManager navigationManager, AuthenticationStateProvider authenticationState)
 {
     _cache               = cache;
     _navigationManager   = navigationManager;
     _authenticationState = authenticationState;
 }