TCPServer1 C# TCPServer with WebSocket C# TCPServer with WebSocket public class TcpServerWS { private static TcpServerWS _instance; public static TcpServerWS Instance { get { return _instance; } } private TcpListener m_TcpListener; private int _nPort = 13000; private string _sIPAddress; private List m_Clients; private Thread m_ListenThread; public TcpServerWS() { this.m_Clients = new List(); } public void ServerStart() { m_ListenThre.. 2020. 8. 13. 이전 1 다음