At.FF.Krems.FullscreenBrowser.ScreenRefresher.StartTimer C# (CSharp) Method

StartTimer() private method

Starts the timer.
private StartTimer ( ) : void
return void
        private void StartTimer()
        {
            this.timer.Interval = this.config.Interval * 60 * 1000;
            if (!this.timer.Enabled)
            {
                this.timer.Start();
            }
        }