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

ClientProxy() public method

public ClientProxy ( IConnection connection, IHubPipelineInvoker invoker, string hubName, IList exclude ) : System.Collections.Generic
connection IConnection
invoker IHubPipelineInvoker
hubName string
exclude IList
return System.Collections.Generic
        public ClientProxy(IConnection connection, IHubPipelineInvoker invoker, string hubName, IList<string> exclude)
        {
            _connection = connection;
            _invoker = invoker;
            _hubName = hubName;
            _exclude = exclude;
            _signal = PrefixHelper.GetHubName(_hubName);
        }