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

HubOutgoingInvokerContext() public method

public HubOutgoingInvokerContext ( IConnection connection, IList signals, ClientHubInvocation invocation ) : System.Collections.Generic
connection IConnection
signals IList
invocation ClientHubInvocation
return System.Collections.Generic
        public HubOutgoingInvokerContext(IConnection connection, IList<string> signals, ClientHubInvocation invocation)
        {
            Connection = connection;
            Signals = signals;
            Invocation = invocation;
        }

Same methods

HubOutgoingInvokerContext::HubOutgoingInvokerContext ( IConnection connection, string signal, ClientHubInvocation invocation ) : System.Collections.Generic
HubOutgoingInvokerContext