IClinet.cs 382 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Net.Sockets;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Edge.Core.Processor.Communicator
  8. {
  9. internal interface IClinet
  10. {
  11. /// <summary>
  12. /// 获取链接客户端
  13. /// </summary>
  14. /// <returns></returns>
  15. TcpClient? GetTcpClient();
  16. }
  17. }