You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
476 B
19 lines
476 B
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace MediaBrowser.Controller.Net
|
|
{
|
|
/// <summary>
|
|
/// Interface IHttpServer.
|
|
/// </summary>
|
|
public interface IWebSocketManager
|
|
{
|
|
/// <summary>
|
|
/// The HTTP request handler.
|
|
/// </summary>
|
|
/// <param name="context">The current HTTP context.</param>
|
|
/// <returns>The task.</returns>
|
|
Task WebSocketRequestHandler(HttpContext context);
|
|
}
|
|
}
|