using System; using System.Collections.Generic; namespace Core.StlMes.Client.LgResMgt.Mcms { public interface IProtocol { byte[] Framing(byte[] byteArray); DeframeType AnalaysData(List ReceiveData, out Object Data, out List rightData); } public enum DeframeType { RightFrame = 0, WrongHead = 1, LengthLess = 2, WrongFrame = 3, UnKnow } }