@@ -22,7 +22,7 @@ public static class AuthorizationServiceExtensions
22
22
/// <param name="requirement">The requirement to evaluate the policy against.</param>
23
23
/// <returns>
24
24
/// A flag indicating whether requirement evaluation has succeeded or failed.
25
- /// This value is <value >true</value > when the user fulfills the policy, otherwise <value >false</value >.
25
+ /// This value is <c >true</c > when the user fulfills the policy, otherwise <c >false</c >.
26
26
/// </returns>
27
27
public static Task < AuthorizationResult > AuthorizeAsync ( this IAuthorizationService service , ClaimsPrincipal user , object ? resource , IAuthorizationRequirement requirement )
28
28
{
@@ -41,7 +41,7 @@ public static Task<AuthorizationResult> AuthorizeAsync(this IAuthorizationServic
41
41
/// <param name="policy">The policy to evaluate.</param>
42
42
/// <returns>
43
43
/// A flag indicating whether policy evaluation has succeeded or failed.
44
- /// This value is <value >true</value > when the user fulfills the policy, otherwise <value >false</value >.
44
+ /// This value is <c >true</c > when the user fulfills the policy, otherwise <c >false</c >.
45
45
/// </returns>
46
46
public static Task < AuthorizationResult > AuthorizeAsync ( this IAuthorizationService service , ClaimsPrincipal user , object ? resource , AuthorizationPolicy policy )
47
47
{
@@ -59,7 +59,7 @@ public static Task<AuthorizationResult> AuthorizeAsync(this IAuthorizationServic
59
59
/// <param name="policy">The policy to evaluate.</param>
60
60
/// <returns>
61
61
/// A flag indicating whether policy evaluation has succeeded or failed.
62
- /// This value is <value >true</value > when the user fulfills the policy, otherwise <value >false</value >.
62
+ /// This value is <c >true</c > when the user fulfills the policy, otherwise <c >false</c >.
63
63
/// </returns>
64
64
public static Task < AuthorizationResult > AuthorizeAsync ( this IAuthorizationService service , ClaimsPrincipal user , AuthorizationPolicy policy )
65
65
{
@@ -77,7 +77,7 @@ public static Task<AuthorizationResult> AuthorizeAsync(this IAuthorizationServic
77
77
/// <param name="policyName">The name of the policy to evaluate.</param>
78
78
/// <returns>
79
79
/// A flag indicating whether policy evaluation has succeeded or failed.
80
- /// This value is <value >true</value > when the user fulfills the policy, otherwise <value >false</value >.
80
+ /// This value is <c >true</c > when the user fulfills the policy, otherwise <c >false</c >.
81
81
/// </returns>
82
82
public static Task < AuthorizationResult > AuthorizeAsync ( this IAuthorizationService service , ClaimsPrincipal user , string policyName )
83
83
{
0 commit comments