We have a machine with tcp socket opened listening to files.
I can connect to the socket in my C# console application using System.Net.Sockets
I want to read data in an xml file (100 Gb) and send it across via socket.
What's the best way? Is there a microsoft.net library that can break it into packets or stream it and send it across?
Do I have to read it chunk by chunk myself?
Please suggest