Implemented interface member:
2 overrides of IsAuthenticated
System.Security.Claims (1)
System\Security\Claims\GenericIdentity.cs (1)
74public override bool IsAuthenticated
System.Security.Principal.Windows (1)
System\Security\Principal\WindowsIdentity.cs (1)
450public override bool IsAuthenticated
13 references to IsAuthenticated
Aspire.Dashboard (2)
Authentication\AspirePolicyEvaluator.cs (1)
145newPrincipal.AddIdentities(existingPrincipal.Identities.Where(i => i.IsAuthenticated || i.Claims.Any()));
Components\Controls\UserProfile.razor.cs (1)
48if (claimsIdentity?.IsAuthenticated == true)
Microsoft.AspNetCore.Antiforgery (4)
Internal\DefaultAntiforgeryTokenGenerator.cs (2)
219if (identitiesList[i].IsAuthenticated) 229if (identity.IsAuthenticated)
Internal\DefaultClaimUidExtractor.cs (2)
42if (!identity.IsAuthenticated) 88if (identitiesList[i].IsAuthenticated)
Microsoft.AspNetCore.Authentication (1)
src\aspnetcore\src\Shared\SecurityHelper\SecurityHelper.cs (1)
42newPrincipal.AddIdentities(existingPrincipal.Identities.Where(i => i.IsAuthenticated || i.Claims.Any()));
Microsoft.AspNetCore.Authentication.Abstractions (1)
AuthenticationOptions.cs (1)
95/// A user is considered authenticated if <see cref="ClaimsIdentity.IsAuthenticated"/> returns <see langword="true" /> for the <see cref="ClaimsPrincipal"/> associated with the HTTP request.
Microsoft.AspNetCore.Authorization (1)
DenyAnonymousAuthorizationRequirement.cs (1)
27!user.Identities.Any(i => i.IsAuthenticated);
Microsoft.AspNetCore.Authorization.Policy (1)
src\aspnetcore\src\Shared\SecurityHelper\SecurityHelper.cs (1)
42newPrincipal.AddIdentities(existingPrincipal.Identities.Where(i => i.IsAuthenticated || i.Claims.Any()));
Microsoft.AspNetCore.Http.Connections (1)
src\aspnetcore\src\Shared\SecurityHelper\SecurityHelper.cs (1)
42newPrincipal.AddIdentities(existingPrincipal.Identities.Where(i => i.IsAuthenticated || i.Claims.Any()));
Microsoft.AspNetCore.Mvc.Core (1)
src\aspnetcore\src\Shared\SecurityHelper\SecurityHelper.cs (1)
42newPrincipal.AddIdentities(existingPrincipal.Identities.Where(i => i.IsAuthenticated || i.Claims.Any()));
System.Security.Claims (1)
System\Security\Claims\ClaimsIdentity.cs (1)
1019string debugText = $"IsAuthenticated = {(IsAuthenticated ? "true" : "false")}";