1 write to Succeeded
Microsoft.AspNetCore.Authorization (1)
AuthorizationResult.cs (1)
15
private static readonly AuthorizationResult _succeededResult = new() {
Succeeded
= true };
14 references to Succeeded
Aspire.Dashboard (1)
Authentication\AspirePolicyEvaluator.cs (1)
115
if (result.
Succeeded
)
Microsoft.AspNetCore.Authorization (10)
AuthorizationMetrics.cs (1)
55
var 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>.
78
if (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)
99
if (result.
Succeeded
)
Microsoft.AspNetCore.Components.Authorization (1)
AuthorizeViewCore.cs (1)
113
return result.
Succeeded
;
Microsoft.AspNetCore.SignalR.Core (1)
Internal\DefaultHubDispatcher.cs (1)
687
return authorizationResult.
Succeeded
;