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;
5 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 (1)
Internal\HttpConnectionDispatcher.cs (1)
674authenticateResultFeature.AuthenticateResult?.Properties?.ExpiresUtc ?? DateTimeOffset.MaxValue;