RPS.Config.updateDownloadUrl C# (CSharp) Метод

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

public updateDownloadUrl ( ) : string
Результат string
        public string updateDownloadUrl()
        {
            if (this.webUpdateCheck.Document != null) {
                HtmlElement he = this.webUpdateCheck.Document.GetElementById("download");
                if (he != null) {
                    return he.GetAttribute("href");
                }
            }
            return null;
        }