2020-01-31 21:46:10 +00:00
|
|
|
#nullable enable
|
|
|
|
|
2019-11-23 15:31:02 +00:00
|
|
|
using Microsoft.AspNetCore.Http;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Net
|
|
|
|
{
|
2020-06-15 18:49:54 +00:00
|
|
|
/// <summary>
|
|
|
|
/// IAuthService.
|
|
|
|
/// </summary>
|
2018-12-27 23:27:57 +00:00
|
|
|
public interface IAuthService
|
|
|
|
{
|
2020-06-15 18:49:54 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Authenticate request.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="request">The request.</param>
|
|
|
|
/// <returns>Authorization information. Null if unauthenticated.</returns>
|
|
|
|
AuthorizationInfo Authenticate(HttpRequest request);
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
}
|