public bool DownloadImagesNEW(ApiImageDownloadInfo apiImageDownloadInfo) { if (apiImageDownloadInfo == null) { return(false); } var res = DownloadRemoteImageFile(apiImageDownloadInfo.Source, apiImageDownloadInfo.Destination); if (res) { if (apiImageDownloadInfo.ToThumb) { _parent.GenerateThumb(apiImageDownloadInfo.Destination, apiImageDownloadInfo.Destination, apiImageDownloadInfo.MaxHeight); } } return(res); }