using System.Threading.Tasks; using Microsoft.AspNetCore.Http; namespace MediaBrowser.Controller.Net { /// /// Interface IHttpServer. /// public interface IWebSocketManager { /// /// The HTTP request handler. /// /// The current HTTP context. /// The task. Task WebSocketRequestHandler(HttpContext context); } }