private void OnClientDataReceived(NF.TCPClient client, Byte[] bytes)
 {
     try
     {
         if (m_PrototolClient != null)
         {
             m_PrototolClient.Receive_LH(client, bytes);
         }
     }
     catch (Exception ex)
     {
         Console.WriteLine(ex.Message);
     }
 }