コード例 #1
0
ファイル: ImageServer.cs プロジェクト: orrpaz/ImageService
 /// <summary>
 ///  Starts listen to incoming clients
 /// </summary>
 public void Start()
 {
     m_tcpserver.Start();
 }
コード例 #2
0
 public void Run(RunPropertyModel runPropertyModel)
 {
     _tcpServer = new TCPServer(runPropertyModel.IPAddress, runPropertyModel.Port);
     _tcpServer.RecieveDataEvent += RecieveClientCommand;
     _tcpServer.Start(runPropertyModel.ClientsCount);
 }
コード例 #3
0
 /// <summary>
 ///  Starts listen to incoming clients
 /// </summary>
 public void Start()
 {
     //    m_tcpserver.Start();
     m_mobileserver.Start();
 }
コード例 #4
0
 public void Run(IPAddress iPAddress, int port, int countClients)
 {
     _tcpServer = new TCPServer(iPAddress, port);
     _tcpServer.RecieveDataEvent += RecieveClientCommand;
     _tcpServer.Start(countClients);
 }