IAuditingSelectorList.cs 459 B

1234567891011121314151617
  1. using System.Collections.Generic;
  2. namespace Abp.Auditing
  3. {
  4. /// <summary>
  5. /// List of selector functions to select classes/interfaces to be audited.
  6. /// </summary>
  7. public interface IAuditingSelectorList : IList<NamedTypeSelector>
  8. {
  9. /// <summary>
  10. /// Removes a selector by name.
  11. /// </summary>
  12. /// <param name="name"></param>
  13. /// <returns></returns>
  14. bool RemoveByName(string name);
  15. }
  16. }