SidebarDiagnostics.Models.SidebarModel.StartMonitors C# (CSharp) Method

StartMonitors() private method

private StartMonitors ( ) : void
return void
        private void StartMonitors()
        {
            _monitorTimer = new DispatcherTimer();
            _monitorTimer.Interval = TimeSpan.FromMilliseconds(Framework.Settings.Instance.PollingInterval);
            _monitorTimer.Tick += new EventHandler(MonitorTimer_Tick);
            _monitorTimer.Start();
        }