IAuthService.cs 393 B

1234567891011121314
  1. #nullable enable
  2. using MediaBrowser.Controller.Entities;
  3. using MediaBrowser.Model.Services;
  4. using Microsoft.AspNetCore.Http;
  5. namespace MediaBrowser.Controller.Net
  6. {
  7. public interface IAuthService
  8. {
  9. void Authenticate(IRequest request, IAuthenticationAttributes authAttribtues);
  10. User? Authenticate(HttpRequest request, IAuthenticationAttributes authAttribtues);
  11. }
  12. }