Uploading large files to Controller in chunks using HttpClient, IFormFile always empty
问题 I am trying to create a .Net Standard "Client" class for uploading (sometimes very large) files to a Controller. I want to do this by breaking the file into chunks and uploading them one at a time. The intent is for other applications to use this instead of communicating directly to the Web Api. I already have the Controller working. I've verified that it works using a Kendo-ui control which supports chunk-saving. The issue I am having is that the IEnumerable<IFormFile> files parameter for my