Beispiel #1
0
        private async void Handler_DownloadYouTubeVideo(object sender, EventArgs e)
        {
            var downloader = new YouTubeVideoDownloader(URL);

            downloader.DownloadProgress += YouTubeDownloader_DownloadProgress;
            downloader.DownloadComplete += YouTubeDownloader_DownloadComplete;

            try
            {
                await Task.Run(() => downloader.Download()); //Download() is synchronous, need to wrap it like this as not to block UI
            }
            catch                                            //all sorts of things can go wrong with this, just catch all the exceptions.
            {
                MessageBox.Show("Unable to download this video. Try using the built-in screen capture.", "Unable to Download Video", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            }
        }
 private async void Handler_DownloadYouTubeVideo(object sender, EventArgs e)
 {
     var downloader = new YouTubeVideoDownloader(URL);
     downloader.DownloadProgress += YouTubeDownloader_DownloadProgress;
     downloader.DownloadComplete += YouTubeDownloader_DownloadComplete;
     await Task.Run(() => downloader.Download()); //Download() is synchronous, need to wrap it like this as not to block UI 
 }