TlvProvider.cs 231 B

123456789
  1. namespace TLVProtocal;
  2. public interface ITlvProvider
  3. {
  4. void Received(TlvData data);
  5. TlvData RequestReply(TlvData tlvData);
  6. void Connected(TcpConnection connection);
  7. void Disconnected(TcpConnection connection);
  8. }