protected string ReadString()
 {
     if (_sending)
     {
         Debug.Log(GetType() + " unable to read data in packet! It is sent!");
         return(string.Empty);
     }
     return(peer?.ReadString());
 }