Adaptive.ReactiveTrader.Messaging.WebSocket.ClientWebSocketWrapper.ClientWebSocketWrapper C# (CSharp) Method

ClientWebSocketWrapper() protected method

protected ClientWebSocketWrapper ( string uri ) : System
uri string
return System
        protected ClientWebSocketWrapper(string uri)
        {
            _ws = CommonWebSocket.CreateClientWebSocket(SubProtocol, _keepAliveInterval, ReceiveChunkSize, false);
            _uri = new Uri(uri);
            _cancellationToken = _cancellationTokenSource.Token;
        }