ArtOfWords.Models.Salesman.AdsDownloader.StartImageDownloading C# (CSharp) Метод

StartImageDownloading() приватный Метод

private StartImageDownloading ( ) : void
Результат void
        private void StartImageDownloading()
        {
            _state = DownloadState.ImageDownloading;
            try
            {
                _recentDownloadedXmlFormat = _xmlFormatManager.GetXmlFormat(GetDownloadedXmlPath());
                if (_recentDownloadedXmlFormat == null)
                {
                    return;
                }

                AsyncLoadFile(_recentDownloadedXmlFormat.DownloadFile, GetDownloadedImagePath());
            }
            catch (Exception )
            {
            }
        }