send method

void send(
  1. DC msg
)

Implementation

void send(DC msg) {
  try {
    if (_sock != null) {
      _lastAction = DateTime.now();
      _sock?.send(msg);
    }
  } catch (ex) {
    //Console.WriteLine(ex.ToString());
  }
}