private void downloader_FileDownloadFailed(object sender, FileDownloadFailedEventArgs e)
 {
     // If one or more files fail, whole operation failed. Might handle it more
     // elegantly in the future.
     this.Status = OperationStatus.Failed;
     downloader.Stop();
 }
        private void downloader_FileDownloadFailed(object sender, FileDownloadFailedEventArgs e)
        {
            // If one or more files fail, whole operation failed. Might handle it more
            // elegantly in the future.
            _downloaderSuccessful = false;

            Common.SaveException(e.Exception);
        }