File: Authorization\IAllowAnonymousFilter.cs
Web Access
Project: src\src\Mvc\Mvc.Abstractions\src\Microsoft.AspNetCore.Mvc.Abstractions.csproj (Microsoft.AspNetCore.Mvc.Abstractions)
// 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.Mvc.Filters;
 
namespace Microsoft.AspNetCore.Mvc.Authorization;
 
/// <summary>
/// A filter that allows anonymous requests, disabling some <see cref="IAuthorizationFilter"/>s.
/// </summary>
public interface IAllowAnonymousFilter : IFilterMetadata
{
}