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

HubConnectionManager() private method

Initializes a new instance of the HubConnectionManager class. This allows the capability of providing a custom configured HubConnection to be managed.
private HubConnectionManager ( HubConnection hubConnection ) : Drey.Logging
hubConnection Microsoft.AspNet.SignalR.Client.HubConnection The hub connection.
return Drey.Logging
        private HubConnectionManager(HubConnection hubConnection)
        {
            _hubConnection = hubConnection;
            _hubConnection.TraceWriter = new LibLogTraceWriter();
            _hubConnection.TraceLevel = TraceLevels.All;
        }
        /// <summary>

Same methods

HubConnectionManager::HubConnectionManager ( string url ) : Drey.Logging