StreamSendWrapper

It may be desirable to send partial data held on disk rather than from memory. This can be easily achieved by using the provided wrapper object StreamSendWrapper: //Create a filestream linked to the data on disk FileStream diskData = new FileStream("testfile.dat", FileMode.Open); //Wrap the filestream in a thread safe stream which enables // thread safe […]

Continue Reading »