GetXmlFormat() публичный Метод

public GetXmlFormat ( string xmlPath ) : AdsXmlFormat
xmlPath string
Результат AdsXmlFormat
Пример #1
0
        private void StartImageDownloading()
        {
            _state = DownloadState.ImageDownloading;
            try
            {
                _recentDownloadedXmlFormat = _xmlFormatManager.GetXmlFormat(GetDownloadedXmlPath());
                if (_recentDownloadedXmlFormat == null)
                {
                    return;
                }

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