2 implementations of AuthenticateResult
Microsoft.AspNetCore.Authentication (1)
AuthenticationFeatures.cs (1)
22public AuthenticateResult? AuthenticateResult
Microsoft.AspNetCore.Authorization.Policy (1)
AuthenticationFeatures.cs (1)
23public AuthenticateResult? AuthenticateResult
1 write to AuthenticateResult
Microsoft.AspNetCore.Authorization.Policy (1)
AuthorizationMiddleware.cs (1)
162authenticateResultFeature.AuthenticateResult = authenticateResult;
8 references to AuthenticateResult
Aspire.Dashboard (1)
Authentication\AspirePolicyEvaluator.cs (1)
82return context.Features.Get<IAuthenticateResultFeature>()?.AuthenticateResult ?? DefaultAuthenticateResult(context);
Microsoft.AspNetCore.Authentication.Abstractions (2)
IAuthenticateResultFeature.cs (2)
9/// Used to capture the <see cref="AuthenticateResult"/> from the authorization middleware. 14/// The <see cref="AuthenticateResult"/> from the authorization middleware.
Microsoft.AspNetCore.Authorization.Policy (1)
PolicyEvaluator.cs (1)
71return context.Features.Get<IAuthenticateResultFeature>()?.AuthenticateResult ?? DefaultAuthenticateResult(context);
Microsoft.AspNetCore.Http.Connections (4)
Internal\HttpConnectionDispatcher.cs (4)
183var authResult = context.Features.Get<IAuthenticateResultFeature>()?.AuthenticateResult; 651var authenticateResult = context.Features.Get<IAuthenticateResultFeature>()?.AuthenticateResult; 1018authenticateResultFeature.AuthenticateResult is { } authenticateResult 1034return authenticateResultFeature.AuthenticateResult is { } authenticateResult