AbpAllowAnonymousAttribute.cs 341 B

12345678910111213
  1. using System;
  2. namespace Abp.Authorization
  3. {
  4. /// <summary>
  5. /// Used to allow a method to be accessed by any user.
  6. /// Suppress <see cref="AbpAuthorizeAttribute"/> defined in the class containing that method.
  7. /// </summary>
  8. public class AbpAllowAnonymousAttribute : Attribute, IAbpAllowAnonymousAttribute
  9. {
  10. }
  11. }