Exemplo n.º 1
0
 public void OnDisConnect(TciWebSocketClient tciWebSocketClient)
 {
     if (_tciWebSocketClient != tciWebSocketClient)
     {
         return;
     }
     OnSocketConnectionChanged?.Invoke(this, new TciConnectedEventArgs(false));
 }
Exemplo n.º 2
0
 public void OnConnect(TciWebSocketClient tciWebSocketClient)
 {
     _tciWebSocketClient = tciWebSocketClient;
     OnSocketConnectionChanged?.Invoke(this, new TciConnectedEventArgs(true));
 }