Example #1
0
 /// <summary>
 /// Handler for TcpClient connection for incoming data
 /// </summary>
 /// <param name="client"></param>
 public void Handler(TcpClient client)
 {
     mTcpConnection = client;
     mStreamer      = new Streamer(mTcpConnection.GetStream());
     mTcpConnection.Client.Blocking = false; // for this type of connection we MUST have unblocking read GetRequest
 }