2021-05-21 03:56:59 +00:00
|
|
|
using System.Threading.Tasks;
|
2020-06-20 16:02:03 +00:00
|
|
|
using Microsoft.AspNetCore.Http;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Net
|
|
|
|
{
|
2020-06-20 16:02:03 +00:00
|
|
|
/// <summary>
|
|
|
|
/// IAuthorization context.
|
|
|
|
/// </summary>
|
2018-12-27 23:27:57 +00:00
|
|
|
public interface IAuthorizationContext
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the authorization information.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="requestContext">The request context.</param>
|
2021-05-21 03:56:59 +00:00
|
|
|
/// <returns>A task containing the authorization info.</returns>
|
|
|
|
Task<AuthorizationInfo> GetAuthorizationInfo(HttpContext requestContext);
|
2020-06-20 16:02:03 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the authorization information.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="requestContext">The request context.</param>
|
2021-05-21 03:56:59 +00:00
|
|
|
/// <returns>A <see cref="Task"/> containing the authorization info.</returns>
|
|
|
|
Task<AuthorizationInfo> GetAuthorizationInfo(HttpRequest requestContext);
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
}
|