UploadFiles() публичный Метод

Uploads all files in the upload queue.
public UploadFiles ( ) : Task
Результат Task
Пример #1
0
 private async Task Upload(string[] files, string destination)
 {
     StartProgressRing();
     Uploader uploader = new Uploader(client);
     uploader.AddFiles(files);
     try
     {
         await uploader.UploadFiles();
         await uploader.Operation("FileManager.Import")
                       .SetContext("currentDocument", currentDirectory.Path)
                       .Execute();
     }
     catch (Exception ex)
     {
         await DisplayError("Could not upload files.", ex);
     }
     await UpdateView();
     StopProgressRing();
 }