#nullable enable using Microsoft.AspNetCore.Http; namespace MediaBrowser.Controller.Net { /// /// IAuthService. /// public interface IAuthService { /// /// Authenticate request. /// /// The request. /// Authorization information. Null if unauthenticated. AuthorizationInfo Authenticate(HttpRequest request); } }