IConnection.cs 252 B

123456789101112
  1. using NetCore.ContentParse;
  2. using NetCore.NetServerCoreBasic;
  3. using NetCore.Protocol;
  4. namespace NetCore
  5. {
  6. public interface IConnection : INetContainer
  7. {
  8. long ConnectionId { get; set; }
  9. void SendData(object sendData);
  10. }
  11. }