CodeImp.Gluon.BuienradarDisplayPanel.RefreshList C# (CSharp) Метод

RefreshList() публичный Метод

public RefreshList ( ) : void
Результат void
        public void RefreshList()
        {
            updatetimer.Stop();
            movearrowstimer.Stop();

            updatethread = new Thread(new ThreadStart(UpdateThread));
            updatethread.Name = "Buienradar Update";
            updatethread.Priority = ThreadPriority.BelowNormal;
            updatethread.Start();
        }