2020-01-31 21:46:10 +00:00
|
|
|
#nullable enable
|
|
|
|
|
2019-11-23 15:31:02 +00:00
|
|
|
using MediaBrowser.Controller.Entities;
|
2019-01-13 20:01:16 +00:00
|
|
|
using MediaBrowser.Model.Services;
|
2019-11-23 15:31:02 +00:00
|
|
|
using Microsoft.AspNetCore.Http;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Net
|
|
|
|
{
|
|
|
|
public interface IAuthService
|
|
|
|
{
|
|
|
|
void Authenticate(IRequest request, IAuthenticationAttributes authAttribtues);
|
2020-01-31 21:46:10 +00:00
|
|
|
User? Authenticate(HttpRequest request, IAuthenticationAttributes authAttribtues);
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
}
|