Esempio n. 1
0
 private void AsyncOperations(object sender, DoWorkEventArgs e)
 {
     if (_TCPServer.IsConnected())
     {
         RaisePropertyChanged("IsConnectedProperty");
         _asyncRecivedText = _TCPServer.ReadText();
     }
     _TCPServer.AsyncWaitForClient();
 }