Implemented interface member:
method
AuthenticateAsync
Microsoft.AspNetCore.Authentication.IAuthenticationService.AuthenticateAsync(Microsoft.AspNetCore.Http.HttpContext, System.String)
1 override of AuthenticateAsync
Microsoft.AspNetCore.Authentication.Core (1)
AuthenticationServiceImpl.cs (1)
19public override async Task<AuthenticateResult> AuthenticateAsync(HttpContext context, string? scheme)
5 references to AuthenticateAsync
Microsoft.AspNetCore.Authentication.Core (1)
AuthenticationServiceImpl.cs (1)
25result = await base.AuthenticateAsync(context, scheme);
Microsoft.AspNetCore.Authentication.Test (4)
AuthenticationMetricsTest.cs (4)
30await authenticationService.AuthenticateAsync(httpContext, scheme: "custom"); 58await authenticationService.AuthenticateAsync(httpContext, scheme: "custom"); 86await authenticationService.AuthenticateAsync(httpContext, scheme: "custom"); 114var ex = await Assert.ThrowsAsync<InvalidOperationException>(() => authenticationService.AuthenticateAsync(httpContext, scheme: "custom"));