| 123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Core.StlMes.Client.Mcp.Mch.Mcms
- {
- public interface IProtocol
- {
- byte[] Framing(byte[] byteArray);
- DeframeType AnalaysData(List<byte> ReceiveData, out Object Data);
- }
- public enum DeframeType
- {
- RightFrame = 0,
- WrongHead = 1,
- LengthLess = 2,
- WrongFrame = 3,
- UnKnow
- }
- }
|