mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
19 lines
495 B
C#
19 lines
495 B
C#
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace MediaBrowser.Controller.Net
|
|
{
|
|
/// <summary>
|
|
/// IAuthService.
|
|
/// </summary>
|
|
public interface IAuthService
|
|
{
|
|
/// <summary>
|
|
/// Authenticate request.
|
|
/// </summary>
|
|
/// <param name="request">The request.</param>
|
|
/// <returns>Authorization information. Null if unauthenticated.</returns>
|
|
Task<AuthorizationInfo> Authenticate(HttpRequest request);
|
|
}
|
|
}
|