File: CountingPolicyEvaluator.cs
Web Access
Project: src\src\Mvc\test\WebSites\SecurityWebSite\SecurityWebSite.csproj (SecurityWebSite)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using Microsoft.AspNetCore.Authentication;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Authorization.Policy;
 
namespace SecurityWebSite;
 
public class CountingPolicyEvaluator : PolicyEvaluator
{
    public int AuthorizeCount { get; private set; }
 
    public CountingPolicyEvaluator(IAuthorizationService authorization) : base(authorization) { }
 
    public override Task<PolicyAuthorizationResult> AuthorizeAsync(AuthorizationPolicy policy, AuthenticateResult authenticationResult, HttpContext context, object resource)
    {
        AuthorizeCount++;
        return base.AuthorizeAsync(policy, authenticationResult, context, resource);
    }
}