Exemple #1
0
        public void MainMethod()
        {
            webOperations = new WebOperations();
            webOperations.DownloadFileAsync(new WebOperationDownloadObject()
            {
                Url = new Uri(@"https://www.dropbox.com/s/ovlpue2r4693iy4/A%20Troll%20Never%20Dies....mp4?dl=1")
            });

            webOperations.WebOperationProgress  += Downloading;
            webOperations.WebOperationCompleted += Completed;
        }