AsterixDisplayAnalyser.AsterixReplay.LANReplay.StopThread C# (CSharp) Метод

StopThread() приватный статический Метод

private static StopThread ( ) : void
Результат void
            private static void StopThread()
            {
                if (ReplayThread != null)
                {
                    RequestStop = true;
                    Thread.Sleep(200);
                    if (ReplayThread.IsAlive == true)
                    {
                        Cleanup();
                        ReplayThread.Abort();
                    }
                }
            }