14 overrides of HandleChallengeAsync
Aspire.Dashboard (1)
Authentication\FrontendCompositeAuthenticationHandler.cs (1)
35protected override async Task HandleChallengeAsync(AuthenticationProperties properties)
Identity.DefaultUI.WebSite (1)
Services\ContosoAuthenticationHandler.cs (1)
25protected override Task HandleChallengeAsync(AuthenticationProperties properties)
Microsoft.AspNetCore.Authentication (1)
PolicySchemeHandler.cs (1)
37protected override Task HandleChallengeAsync(AuthenticationProperties? properties)
Microsoft.AspNetCore.Authentication.BearerToken (1)
BearerTokenHandler.cs (1)
58protected override Task HandleChallengeAsync(AuthenticationProperties properties)
Microsoft.AspNetCore.Authentication.Certificate (1)
CertificateAuthenticationHandler.cs (1)
172protected override async Task HandleChallengeAsync(AuthenticationProperties properties)
Microsoft.AspNetCore.Authentication.Cookies (1)
CookieAuthenticationHandler.cs (1)
475protected override async Task HandleChallengeAsync(AuthenticationProperties properties)
Microsoft.AspNetCore.Authentication.JwtBearer (1)
JwtBearerHandler.cs (1)
275protected override async Task HandleChallengeAsync(AuthenticationProperties properties)
Microsoft.AspNetCore.Authentication.Negotiate (1)
NegotiateHandler.cs (1)
380protected override async Task HandleChallengeAsync(AuthenticationProperties properties)
Microsoft.AspNetCore.Authentication.OAuth (1)
OAuthHandler.cs (1)
263protected override async Task HandleChallengeAsync(AuthenticationProperties properties)
Microsoft.AspNetCore.Authentication.OpenIdConnect (1)
OpenIdConnectHandler.cs (1)
362protected override async Task HandleChallengeAsync(AuthenticationProperties properties)
Microsoft.AspNetCore.Authentication.Test (1)
TestHandlers.cs (1)
23protected override Task HandleChallengeAsync(AuthenticationProperties properties)
Microsoft.AspNetCore.Authentication.Twitter (1)
TwitterHandler.cs (1)
164protected override async Task HandleChallengeAsync(AuthenticationProperties properties)
Microsoft.AspNetCore.Authentication.WsFederation (1)
WsFederationHandler.cs (1)
85protected override async Task HandleChallengeAsync(AuthenticationProperties properties)
Microsoft.AspNetCore.Tests (1)
WebApplicationTests.cs (1)
2853protected override Task HandleChallengeAsync(AuthenticationProperties properties) => Task.CompletedTask;
2 references to HandleChallengeAsync
Microsoft.AspNetCore.Authentication (1)
AuthenticationHandler.cs (1)
316await HandleChallengeAsync(properties);
Microsoft.AspNetCore.Authentication.BearerToken (1)
BearerTokenHandler.cs (1)
61return base.HandleChallengeAsync(properties);