Sic.Framework/MECF.Framework.Common/MECF/Framework/Common/Communications/Tcp/Socket/Framing/Base/IFrameDecoder.cs

8 lines
260 B
C#

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