Hi Seth,
I am working an a project that with following requirements
- Has to use TCP/IP to send and receive messages
- The messages are in form of byte[]
- I must have method like GetDataAsync() which will use your AsyncTcpClient to write asynchronously the message (send it to a server at an IP/Port) AND will then read response from that server
- Once entire response is received, the response will then be converted into a string. My question here is how do I know I have received entire response from server? (To me, it looks like OnDataReceived is fired with each chunk of data read)
- The string will be parsed and used to create a List models which is then displayed in a ListView
- This is to be done using .NETStandard 2.0 Xamarin Forms application.
- Based on above, is this library helpful in such situation?
Much appreciated, I read the issue you closed from someone else and it sounds like it is not adequate?
Much appreciated,
Hi Seth,
I am working an a project that with following requirements
Much appreciated, I read the issue you closed from someone else and it sounds like it is not adequate?
Much appreciated,