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;
        }