Implemented interface member:
method
ChallengeAsync
Microsoft.AspNetCore.Authentication.IAuthenticationService.ChallengeAsync(Microsoft.AspNetCore.Http.HttpContext, System.String, Microsoft.AspNetCore.Authentication.AuthenticationProperties)
1 override of ChallengeAsync
Microsoft.AspNetCore.Authentication.Core (1)
AuthenticationServiceImpl.cs (1)
37public override async Task ChallengeAsync(HttpContext context, string? scheme, AuthenticationProperties? properties)
3 references to ChallengeAsync
Microsoft.AspNetCore.Authentication.Core (1)
AuthenticationServiceImpl.cs (1)
41await base.ChallengeAsync(context, scheme, properties);
Microsoft.AspNetCore.Authentication.Test (2)
AuthenticationMetricsTest.cs (2)
140await authenticationService.ChallengeAsync(httpContext, scheme: "custom", properties: null); 166var ex = await Assert.ThrowsAsync<InvalidOperationException>(() => authenticationService.ChallengeAsync(httpContext, scheme: "custom", properties: null));