Enum ThreadState
Specifies the execution states of a Thread.
[Flags]
public enum ThreadState
Fields
AbortRequested = 128The Thread.Abort method has been invoked on the thread, but the thread has not yet received the pending System.Threading.ThreadAbortException that will attempt to terminate it.
Aborted = 256The thread state includes AbortRequested and the thread is now dead, but its state has not yet changed to Stopped.
Background = 4The thread is being executed as a background thread, as opposed to a foreground thread. This state is controlled by setting the Thread.IsBackground property.
Running = 0The thread has been started, it is not blocked, and there is no pending ThreadAbortException.
StopRequested = 1The thread is being requested to stop. This is for internal use only.
Stopped = 16The thread has stopped.
SuspendRequested = 2The thread is being requested to suspend.
Suspended = 64The thread has been suspended.
Unstarted = 8The Thread.Start method has not been invoked on the thread.
WaitSleepJoin = 32The thread is blocked. This could be the result of calling Thread.Sleep or Thread.Join, of requesting a lock � for example, by calling Monitor.Enter or Monitor.Wait or of waiting on a thread synchronization object such as ManualResetEvent.