Microsoft.AspNetCore.SignalR.Hubs.HubContext.HubContext C# (CSharp) Method

HubContext() public method

public HubContext ( IConnection connection, IHubPipelineInvoker invoker, string hubName ) : Microsoft.AspNetCore.SignalR.Infrastructure
connection IConnection
invoker IHubPipelineInvoker
hubName string
return Microsoft.AspNetCore.SignalR.Infrastructure
        public HubContext(IConnection connection, IHubPipelineInvoker invoker, string hubName)
        {
            Clients = new HubConnectionContextBase(connection, invoker, hubName);
            Groups = new GroupManager(connection, PrefixHelper.GetHubGroupName(hubName));
        }
HubContext