IContentParse.cs 260 B

12345678910
  1. using NetCore.NetServerCoreBasic;
  2. using NetCore.Protocol;
  3. namespace NetCore.ContentParse;
  4. public interface IContentParse
  5. {
  6. byte[] AssembleByte(byte[] content);
  7. void ParseByte(byte[] content,IProtocol iProtocol,IContentReceiver contentReceiver);
  8. }