IRequiresRegistration.cs 456 B

123456789101112131415
  1. using System.Threading.Tasks;
  2. namespace MediaBrowser.Common.Security
  3. {
  4. public interface IRequiresRegistration
  5. {
  6. /// <summary>
  7. /// Load all registration information required for this entity.
  8. /// Your class should re-load all MBRegistrationRecords when this is called even if they were
  9. /// previously loaded.
  10. /// </summary>
  11. /// <returns></returns>
  12. Task LoadRegistrationInfoAsync();
  13. }
  14. }