3 overrides of GetAuthenticationStateAsync
BasicTestApp (1)
AuthTest\ServerAuthenticationStateProvider.cs (1)
22public override async Task<AuthenticationState> GetAuthenticationStateAsync()
Microsoft.AspNetCore.Components.Authorization.Tests (1)
TestAuthenticationStateProvider.cs (1)
10public override Task<AuthenticationState> GetAuthenticationStateAsync()
Microsoft.AspNetCore.Components.Endpoints (1)
DependencyInjection\ServerAuthenticationStateProvider.cs (1)
16public override Task<AuthenticationState> GetAuthenticationStateAsync()
3 references to GetAuthenticationStateAsync
Microsoft.AspNetCore.Components.Authorization (2)
CascadingAuthenticationStateServiceCollectionExtensions.cs (1)
37: base(authenticationStateProvider.GetAuthenticationStateAsync, isFixed: false)
IHostEnvironmentAuthenticationStateProvider.cs (1)
10/// it will receive the <see cref="AuthenticationState"/> returned by <see cref="AuthenticationStateProvider.GetAuthenticationStateAsync"/>
Microsoft.AspNetCore.Components.Endpoints (1)
Rendering\EndpointHtmlRenderer.cs (1)
95authStateTask ??= authenticationStateProvider.GetAuthenticationStateAsync();