11 references to AuthenticationStateChanged
Microsoft.AspNetCore.Components.Authorization (5)
AuthenticationStateProvider.cs (3)
24/// Raises the <see cref="AuthenticationStateChanged"/> event. 31AuthenticationStateChanged?.Invoke(task); 36/// A handler for the <see cref="AuthenticationStateProvider.AuthenticationStateChanged"/> event.
CascadingAuthenticationStateServiceCollectionExtensions.cs (2)
40_authenticationStateProvider.AuthenticationStateChanged += HandleAuthenticationStateChanged; 54_authenticationStateProvider.AuthenticationStateChanged -= HandleAuthenticationStateChanged;
Microsoft.AspNetCore.Components.Server (1)
Circuits\RevalidatingServerAuthenticationStateProvider.cs (1)
32AuthenticationStateChanged += authenticationStateTask =>
Microsoft.AspNetCore.Components.Server.Tests (5)
Circuits\RevalidatingServerAuthenticationStateProviderTest.cs (5)
40provider.AuthenticationStateChanged += _ => { didNotifyAuthenticationStateChanged = true; }; 64provider.AuthenticationStateChanged += newStateTask => newAuthStateNotificationTcs.SetResult(newStateTask); 88provider.AuthenticationStateChanged += newStateTask => newAuthStateNotificationTcs.SetResult(newStateTask); 154provider.AuthenticationStateChanged += _ => { authenticationStateChangedCount++; }; 192provider.AuthenticationStateChanged += _ =>