11 lines
216 B
C#
11 lines
216 B
C#
using System.Net.WebSockets;
|
|
|
|
namespace Core.Servers.Ws;
|
|
|
|
public interface IWebSocketConnectionHandler
|
|
{
|
|
string GetHookUrl();
|
|
string GetSocketId();
|
|
Task OnConnection(WebSocket ws, HttpContext context);
|
|
}
|