Files
Modbus.Net/NA200H/ModBus.Net/IProtocalFormatting.cs
2014-07-31 17:09:53 +08:00

11 lines
239 B
C#

namespace ModBus.Net
{
public interface IProtocalFormatting
{
byte[] Format(InputStruct message);
byte[] Format(params object[] message);
OutputStruct Unformat(byte[] messageBytes, ref int pos);
}
}