I am referring to .net asyn example here https://msdn.microsoft.com/en-us/library/system.net.sockets.socketasynceventargs.aspx
In this code server responds to client when a message is received. My question
1) How can server send data to a required client, Do I need to find the same SocketAsyncEventArgs initiated during the connection and send it though?
2) How can server and and receive from the same client concurrently? I mean can I send and receive stuff simultaneously.
Thanks