I want to create a WEB API that downloads a file from this client on Azure. For this, I know that I can use a class like: MultipartFormDataStreamProvider (not sure if this class works for Azure)
I want this API to be accessible from various applications. For starters, a simple .NET application. But my question is: can I use the same API to handle file downloads, for example, from an Android application, a Windows 8 application, etc.
If this is not possible, then all of these applications require a separate API?
My idea of ββthe API is that it can be used in various applications to provide the required functionality. But in this case, the classes needed to load the file will limit its use.
source
share