I have an ASP.NET Core (RC2) WebApi project, and for one of the APIs, I need to take in a zip file, ideally as a Stream, and then return another zip file, again ideally as a stream. Is this possible?
Right now my web api gets and returns a base 64 encoded string... I feel using Streams would be much more efficient.