IContentParse.cs 284 B

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