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)
37
public override async Task
ChallengeAsync
(HttpContext context, string? scheme, AuthenticationProperties? properties)
3 references to ChallengeAsync
Microsoft.AspNetCore.Authentication.Core (1)
AuthenticationServiceImpl.cs (1)
41
await base.
ChallengeAsync
(context, scheme, properties);
Microsoft.AspNetCore.Authentication.Test (2)
AuthenticationMetricsTest.cs (2)
140
await authenticationService.
ChallengeAsync
(httpContext, scheme: "custom", properties: null);
166
var ex = await Assert.ThrowsAsync<InvalidOperationException>(() => authenticationService.
ChallengeAsync
(httpContext, scheme: "custom", properties: null));