private bool IsAlive()

in src/_bcl35/BackgroundRunner.bcl35.cs [47:52]


        private bool IsAlive()
        {
            return _thread != null && _thread.ThreadState != ThreadState.Stopped
                                   && _thread.ThreadState != ThreadState.Aborted
                                   && _thread.ThreadState != ThreadState.AbortRequested;
        }