Drey.Configuration.Infrastructure.HubConnectionManager.GetHubConnectionManager C# (CSharp) Method

GetHubConnectionManager() public static method

Gets the hub connection manager.
public static GetHubConnectionManager ( HubConnection hubConnection ) : IHubConnectionManager
hubConnection Microsoft.AspNet.SignalR.Client.HubConnection The hub connection.
return IHubConnectionManager
        public static IHubConnectionManager GetHubConnectionManager(HubConnection hubConnection)
        {
            IHubConnectionManager connectionManager = new HubConnectionManager(hubConnection);
            return connectionManager;
        }

Same methods

HubConnectionManager::GetHubConnectionManager ( string url ) : IHubConnectionManager