Files
Modbus.Net/NA200H/ModBus.Net/ProtocalLinker.cs
2014-07-31 17:08:48 +08:00

9 lines
196 B
C#

namespace ModBus.Net
{
public abstract class ProtocalLinker
{
public abstract byte[] SendReceive(byte[] content);
public abstract bool SendOnly(byte[] content);
}
}