mscorlib(4.0.0.0) API with additions
ThreadState.cs
2 
3 namespace System.Threading
4 {
7  [Flags]
8  [ComVisible(true)]
9  public enum ThreadState
10  {
12  Running = 0x0,
14  StopRequested = 0x1,
16  SuspendRequested = 0x2,
18  Background = 0x4,
20  Unstarted = 0x8,
22  Stopped = 0x10,
24  WaitSleepJoin = 0x20,
26  Suspended = 0x40,
28  AbortRequested = 0x80,
30  Aborted = 0x100
31  }
32 }
The thread is being executed as a background thread, as opposed to a foreground thread....
Definition: __Canon.cs:3
The M:System.Threading.Thread.Start method has not been invoked on the thread.
The thread is being requested to suspend.
The M:System.Threading.Thread.Abort(System.Object) method has been invoked on the thread,...
Specifies that the class can be serialized.
The thread is being requested to stop. This is for internal use only.
ThreadState
Specifies the execution states of a T:System.Threading.Thread.
Definition: ThreadState.cs:9
The thread is blocked. This could be the result of calling M:System.Threading.Thread....