BetterExplorer.MainWindow.updateCheckTimer_Tick C# (CSharp) Method

updateCheckTimer_Tick() private method

If and only if the application's last update check is more then the interval (UpdateCheckInterval) then it will update using CheckForUpdate
private updateCheckTimer_Tick ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
		private void updateCheckTimer_Tick(object sender, EventArgs e) {
			if (DateTime.Now.Subtract(LastUpdateCheck).Days >= UpdateCheckInterval) {
				CheckForUpdate(false);
			}
		}
	}
MainWindow