1 write to Succeeded
Microsoft.AspNetCore.Authorization (1)
AuthorizationResult.cs (1)
15private static readonly AuthorizationResult _succeededResult = new() { Succeeded = true };
14 references to Succeeded
Aspire.Dashboard (1)
Authentication\AspirePolicyEvaluator.cs (1)
115if (result.Succeeded)
Microsoft.AspNetCore.Authorization (10)
AuthorizationMetrics.cs (1)
55var resultTagValue = result.Succeeded ? "success" : "failure";
AuthorizationServiceExtensions.cs (4)
25/// The result's <see cref="AuthorizationResult.Succeeded"/> property is <c>true</c> when the user fulfills the policy; otherwise <c>false</c>. 44/// The result's <see cref="AuthorizationResult.Succeeded"/> property is <c>true</c> when the user fulfills the policy; otherwise <c>false</c>. 62/// The result's <see cref="AuthorizationResult.Succeeded"/> property is <c>true</c> when the user fulfills the policy; otherwise <c>false</c>. 80/// The result's <see cref="AuthorizationResult.Succeeded"/> property is <c>true</c> when the user fulfills the policy; otherwise <c>false</c>.
DefaultAuthorizationService.cs (3)
60/// The result's <see cref="AuthorizationResult.Succeeded"/> property is <c>true</c> when the user fulfills the policy; otherwise <c>false</c>. 78if (result.Succeeded) 97/// The result's <see cref="AuthorizationResult.Succeeded"/> property is <c>true</c> when the user fulfills the policy; otherwise <c>false</c>.
IAuthorizationService.cs (2)
26/// The result's <see cref="AuthorizationResult.Succeeded"/> property is <c>true</c> when the user fulfills the policy; otherwise <c>false</c>. 45/// The result's <see cref="AuthorizationResult.Succeeded"/> property is <c>true</c> when the policy has been fulfilled; otherwise <c>false</c>.
Microsoft.AspNetCore.Authorization.Policy (1)
PolicyEvaluator.cs (1)
99if (result.Succeeded)
Microsoft.AspNetCore.Components.Authorization (1)
AuthorizeViewCore.cs (1)
113return result.Succeeded;
Microsoft.AspNetCore.SignalR.Core (1)
Internal\DefaultHubDispatcher.cs (1)
687return authorizationResult.Succeeded;