summaryrefslogtreecommitdiff
path: root/external/aspnetwebstack/src/System.Web.Http/AllowAnonymousAttribute.cs
blob: 6bafcb52cb6a43bbb3e5219dac30c3d42fe6295b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.

namespace System.Web.Http
{
    /// <summary>
    /// Actions and controllers marked with this attribute are skipped by <see cref="AuthorizeAttribute"/> during authorization.
    /// </summary>
    [AttributeUsage(AttributeTargets.Method | AttributeTargets.Class, Inherited = true, AllowMultiple = false)]
    public sealed class AllowAnonymousAttribute : Attribute
    {
    }
}