public static DownloadImage DownloadRemoteImageFile_Aux(string uri, string fileName)
        {
            DownloadImage di = new DownloadImage(uri, fileName);

            di.Download();
            return(di);
        }
        public static string DownloadRemoteImageFile(string uri, string fileName, out string Imagen64Bits)
        {
            DownloadImage di = DownloadRemoteImageFile_Aux(uri, fileName);

            Imagen64Bits = di.Get64Bits();
            return(di.FileName);
        }
        public static string DownloadRemoteImageFile(string uri, string fileName)
        {
            DownloadImage di = DownloadRemoteImageFile_Aux(uri, fileName);

            return(di.FileName);
        }