1 implementation of AuthenticateAsync
Microsoft.AspNetCore.Authentication.Core (1)
AuthenticationService.cs (1)
63public virtual async Task<AuthenticateResult> AuthenticateAsync(HttpContext context, string? scheme)
7 references to AuthenticateAsync
Microsoft.AspNetCore.Authentication.Abstractions (5)
AuthenticationHttpContextExtensions.cs (1)
32GetAuthenticationService(context).AuthenticateAsync(context, scheme);
AuthenticationOptions.cs (1)
69/// Used as the default scheme by <see cref="IAuthenticationService.AuthenticateAsync(HttpContext, string)"/>.
IAuthenticationSchemeProvider.cs (2)
27/// Returns the scheme that will be used by default for <see cref="IAuthenticationService.AuthenticateAsync(HttpContext, string)"/>. 31/// <returns>The scheme that will be used by default for <see cref="IAuthenticationService.AuthenticateAsync(HttpContext, string)"/>.</returns>
TokenExtensions.cs (1)
139var result = await auth.AuthenticateAsync(context, scheme);
Microsoft.AspNetCore.Authentication.Core (2)
AuthenticationSchemeProvider.cs (2)
63/// Returns the scheme that will be used by default for <see cref="IAuthenticationService.AuthenticateAsync(HttpContext, string)"/>. 67/// <returns>The scheme that will be used by default for <see cref="IAuthenticationService.AuthenticateAsync(HttpContext, string)"/>.</returns>