Send and receive large file over streams in ASP.NET Web Api C#
问题 I'm working on a project where I need to send large audio files via streams from a client to a server. I'm using the ASP.NET Web Api to communicate between client and server. My client has a "SendFile" method which I believe works fine, but I don't know how to make my server receive the data I'm sending via a stream. My client code looks like this so far: private const int MAX_CHUNK_SIZE = (1024 * 5000); private HttpWebRequest webRequest = null; private FileStream fileReader = null; private