ISlaveHandlerContext.cs 140 B

1234567
  1. namespace NModbus
  2. {
  3. public interface ISlaveHandlerContext
  4. {
  5. IModbusFunctionService GetHandler(byte functionCode);
  6. }
  7. }