IAuthorizationHelper.cs 339 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Reflection;
  4. using System.Threading.Tasks;
  5. namespace Abp.Authorization
  6. {
  7. public interface IAuthorizationHelper
  8. {
  9. Task AuthorizeAsync(IEnumerable<IAbpAuthorizeAttribute> authorizeAttributes);
  10. Task AuthorizeAsync(MethodInfo methodInfo, Type type);
  11. }
  12. }