How to upload a file in the background in a piece?

I am making a universal application for Windows Phone 8.1. I want to upload a file to the server in the background. Microsoft provides the BackgroundUploader class , which contains the BeginUploadAsync method, which loads the entire file into a single request in the background.

I want to upload a file to pieces on a server. But I still can not find the file in pieces. Is there an alternative?

+4
source share
1 answer

There is no built-in support for downloading chunk by chunk files. If you really need to upload files this way, you have to split the file into parts manually and download them separately.

0
source

All Articles