aspnetcore/samples/SocketsSample/EndPoints/Hubs/IHubConnectionContext.cs

14 lines
266 B
C#

namespace SocketsSample.Hubs
{
public interface IHubConnectionContext
{
IClientProxy All { get; }
IClientProxy Client(string connectionId);
IClientProxy Group(string groupName);
IClientProxy User(string userId);
}
}