Пример #1
0
        // productive functions
        public void SendVarTypes()
        {
            // message type
            var msgType = MessageTypeEnum.VarList;
            // get var types
            var Model = VarTypeGenerator.GetVarTypes();

            // send bytes
            SendBytes(msgType, Model);
        }
Пример #2
0
 private void SendVarBytes()
 {
     SendBytes(MessageTypeEnum.VarValues, VarTypeGenerator.GetVarBytes());
 }