AddinFramework.Util.Search.LoadMdgSearchFromUrl C# (CSharp) Метод

LoadMdgSearchFromUrl() статический приватный Метод

load the MDG Search from the MDG file located at the given URL
static private LoadMdgSearchFromUrl ( EA rep, string url ) : void
rep EA
url string the URL pointing to the MDG file
Результат void
        static void LoadMdgSearchFromUrl(EA.Repository rep, string url)
        {
            try
            {
                LoadMdgSearches(rep, new WebClient().DownloadString(url));
            }
            catch (Exception e)
            {
                MessageBox.Show($"URL='{url}' skipped (see: Extensions, MDGTechnology,Advanced).\r\n{e.Message}",
                    @"Error in load *.xml MDGSearches from url! ");
            }
        }