Esempio n. 1
0
 /// <summary>
 ///  Starts listen to incoming clients
 /// </summary>
 public void Start()
 {
     m_tcpserver.Start();
 }
Esempio n. 2
0
 public void Run(RunPropertyModel runPropertyModel)
 {
     _tcpServer = new TCPServer(runPropertyModel.IPAddress, runPropertyModel.Port);
     _tcpServer.RecieveDataEvent += RecieveClientCommand;
     _tcpServer.Start(runPropertyModel.ClientsCount);
 }
Esempio n. 3
0
 /// <summary>
 ///  Starts listen to incoming clients
 /// </summary>
 public void Start()
 {
     //    m_tcpserver.Start();
     m_mobileserver.Start();
 }
Esempio n. 4
0
 public void Run(IPAddress iPAddress, int port, int countClients)
 {
     _tcpServer = new TCPServer(iPAddress, port);
     _tcpServer.RecieveDataEvent += RecieveClientCommand;
     _tcpServer.Start(countClients);
 }