RPS.Config.getUpdateVersion C# (CSharp) Method

getUpdateVersion() public method

public getUpdateVersion ( ) : string
return 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;
        }