IFrameDecoder.cs 285 B

12345678
  1. namespace MECF.Framework.Common.Communications.Tcp.Socket.Framing.Base
  2. {
  3. public interface IFrameDecoder
  4. {
  5. bool TryDecodeFrame(byte[] buffer, int offset, int count, out int frameLength, out byte[] payload, out int payloadOffset, out int payloadCount);
  6. }
  7. }