BgApiDriver.BgApi.ble_cmd_attclient_read_long C# (CSharp) Method

ble_cmd_attclient_read_long() public method

public ble_cmd_attclient_read_long ( int connection, int chrhandle ) : ble_msg_attclient_read_long_rsp_t
connection int
chrhandle int
return ble_msg_attclient_read_long_rsp_t
        public ble_msg_attclient_read_long_rsp_t ble_cmd_attclient_read_long(int connection, int chrhandle)
        {
            log("ble_cmd_attclient_read_long_id");
            byte[] _data = new byte[SIZE_HEADER + 0 + 1 + 2];
            int idx = 0;
            // header
            _data[idx++] = (byte)ble_dev_types.ble_dev_type_ble|(byte)ble_msg_types.ble_msg_type_cmd|0x0;
            _data[idx++] = (byte)(0 + 1 + 2);
            _data[idx++] = (byte)ble_classes.ble_cls_attclient;
            _data[idx++] = (byte)ble_command_ids.ble_cmd_attclient_read_long_id;
            // data
            _data[idx++] = (byte)connection;
            _data[idx++] = (byte)chrhandle;
            _data[idx++] = (byte)(chrhandle >> 8);
            // send
            BgApiResponse response = Send(new BgApiCommand() { Data = _data }, false);
            return (ble_msg_attclient_read_long_rsp_t)response;
        }
BgApi