IFrameEncoder.cs 275 B

12345678
  1. namespace MECF.Framework.Common.Communications.Tcp.Socket.Framing.Base
  2. {
  3. public interface IFrameEncoder
  4. {
  5. void EncodeFrame(byte[] payload, int offset, int count, out byte[] frameBuffer, out int frameBufferOffset, out int frameBufferLength);
  6. }
  7. }