Open TopperDEL opened 5 years ago
The API for BackgroundUploader from Windows.Networking.BackgroundTransfer is not supported.
The API for BackgroundUploader from Windows.Networking.BackgroundTransfer.BackgroundUploader is supported.
Try to upload a StorageFile to a URL like this:
BackgroundUploader uploader = new BackgroundUploader(); uploader.SetRequestHeader("KEY", "VALUE"); var upload = uploader.CreateUpload(new Uri("https://URL_TO_UPLOAD_TO"), myStorageFile); upload.StartAsync();
Affected platform(s): - [X] iOS - [X] Android - [X] WebAssembly (for me not relevant) - [ ] Windows - [ ] Build tasks
BackgroundDownloader might be the same work to do but is not that important for me.
Are there any news on this?
I'm submitting a...
- Feature requestCurrent behavior
The API for BackgroundUploader from Windows.Networking.BackgroundTransfer is not supported.
Expected behavior
The API for BackgroundUploader from Windows.Networking.BackgroundTransfer.BackgroundUploader is supported.
Minimal reproduction of the problem with instructions
Try to upload a StorageFile to a URL like this:
Environment