protected byte ReadByte() { if (_sending) { Debug.Log(GetType() + " unable to read data in packet! It is sent!"); return(byte.MinValue); } return(peer != null?peer.ReadByte() : byte.MinValue); }