I was wondering if some one could provide an example on how best to send large files that could not fit in a reasonable buffer size that would require multiple sends to be read one as solid memory stream while using the SocketAsyncEventArgs architecture.
The best example I can find is here: C# SocketAsyncEventArgs handling receive and send data
But this is only going to turn the contents of one buffer into its own individual stream where as I need multiple sends consolidated into to one stream to be read as a whole.