// productive functions public void SendVarTypes() { // message type var msgType = MessageTypeEnum.VarList; // get var types var Model = VarTypeGenerator.GetVarTypes(); // send bytes SendBytes(msgType, Model); }
private void SendVarBytes() { SendBytes(MessageTypeEnum.VarValues, VarTypeGenerator.GetVarBytes()); }