I use the Windows service on my server to receive large files (1 GB) from desktop clients, when I use the TCPClient class, it creates an astream to send a file that is blocking my memory. What is the well design for this problem
You can take a peek at the Microsoft Background Intelligent Transfer Service, as indicated here .
The file should be segmented, then the method should send each segment separately, and loading segments into memory on request.
, My.Computer.Network.UploadFile() , .
Source: https://habr.com/ru/post/1737003/More articles:automapper - how to display a list of objects - c #VB.NET добавляет элемент в документ XML с LINQ to XML - vb.netValidating an XML Instance Document on WSDL - wsdlThe C function changes its behavior depending on whether it has a printf call in it - cSpeed limiting ruby file stream - ruby | fooobar.comGet content from an HTML element in Rails - javascriptRegular expression to replace quotes in HTML tags only - c #Matching pair open / close symbols in regular expressions - regexReserved memory addresses? - memory-managementShow yes / no in bool gridview column bound to data source in Winforms? - vb.netAll Articles