2 overrides of 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()
4 references to GetAuthenticationStateAsync
Microsoft.AspNetCore.Components.Authorization (3)
CascadingAuthenticationState_razor.g.cs (1)
91.GetAuthenticationStateAsync();
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)
107authStateTask ??= authenticationStateProvider.GetAuthenticationStateAsync();