RPS.Config.getUpdateVersion C# (CSharp) 메소드

getUpdateVersion() 공개 메소드

public getUpdateVersion ( ) : string
리턴 string
        public string getUpdateVersion()
        {
            if (this.webUpdateCheck.Url.Equals(this.getUpdateUri())) {
                HtmlElement he = this.webUpdateCheck.Document.GetElementById("download");
                return he.GetAttribute("data-version");
            }
            return null;
        }