using System; using System.Collections.Generic; using System.Net; using Modbus.Message; namespace Modbus.IntegrationTests.CustomMessages { public class CustomWriteMultipleRegistersResponse : IModbusMessage { private byte _functionCode; private byte _slaveAddress; private ushort _startAddress; private ushort _numberOfPoints; private ushort _transactionId; public byte[] MessageFrame { get { List frame = new List(); frame.Add(SlaveAddress); frame.AddRange(ProtocolDataUnit); return frame.ToArray(); } } public byte[] ProtocolDataUnit { get { List pdu = new List(); pdu.Add(FunctionCode); pdu.AddRange(BitConverter.GetBytes(IPAddress.HostToNetworkOrder((short) StartAddress))); pdu.AddRange(BitConverter.GetBytes(IPAddress.HostToNetworkOrder((short) NumberOfPoints))); return pdu.ToArray(); } } public ushort TransactionId { get { return _transactionId; } set { _transactionId = value; } } public byte FunctionCode { get { return _functionCode; } set { _functionCode = value; } } public byte SlaveAddress { get { return _slaveAddress; } set { _slaveAddress = value; } } public ushort StartAddress { get { return _startAddress; } set { _startAddress = value; } } public ushort NumberOfPoints { get { return _numberOfPoints; } set { _numberOfPoints = value; } } public void Initialize(byte[] frame) { if (frame == null) throw new ArgumentNullException("frame"); if (frame.Length < 6) throw new FormatException("Message frame does not contain enough bytes."); SlaveAddress = frame[0]; FunctionCode = frame[1]; StartAddress = (ushort) IPAddress.NetworkToHostOrder(BitConverter.ToInt16(frame, 2)); NumberOfPoints = (ushort) IPAddress.NetworkToHostOrder(BitConverter.ToInt16(frame, 4)); } } }