11 lines
239 B
C#
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);
|
|
}
|
|
} |