Namely if I implement a system like this:
private void HandleData(byte[] data)
{
Console.WriteLine("> {0}", Encoding.UTF8.GetString(data));
}
If I send “asdfghjkl” with your library (TCP), may I take a output like this:
> asd
> fghj
> kl
I mean if client send a data in one operation, may server receives this data in one more operations?