RPS.Config.showUpdateInfo C# (CSharp) Method

showUpdateInfo() public method

public showUpdateInfo ( string info ) : void
info string
return void
        public void showUpdateInfo(string info)
        {
            HtmlElement he = this.browser.Document.GetElementById("update");
            he.InnerHtml = info.Replace("<br/>", " ");
            if (this.screensaver.action != Screensaver.Actions.Config) {
                this.screensaver.showUpdateInfo(info);
            }
        }