close method

void close()

Implementation

void close() {
  try {
    if (_sock != null) _sock?.close();
  } catch (ex) {
    //Global.Log("NetworkConenction:Close", LogType.Error, ex.ToString());

  }
}