ThreadState.cs 1022 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. // ThreadState.cs
  2. //
  3. // This code was automatically generated from
  4. // ECMA CLI XML Library Specification.
  5. // Generator: libgen.xsl [1.0; (C) Sergey Chaban ([email protected])]
  6. // Created: Wed, 5 Sep 2001 06:30:30 UTC
  7. // Source file: AllTypes.xml
  8. // URL: http://msdn.microsoft.com/net/ecma/AllTypes.xml
  9. //
  10. // (C) 2001 Ximian, Inc. http://www.ximian.com
  11. namespace System.Threading {
  12. /// <summary>
  13. /// </summary>
  14. [Flags]
  15. public enum ThreadState {
  16. /// <summary>
  17. /// </summary>
  18. Running = 0x00000000,
  19. StopRequested = 0x00000001,
  20. SuspendRequested = 0x00000002,
  21. /// <summary>
  22. /// </summary>
  23. Background = 0x00000004,
  24. /// <summary>
  25. /// </summary>
  26. Unstarted = 0x00000008,
  27. /// <summary>
  28. /// </summary>
  29. Stopped = 0x00000010,
  30. /// <summary>
  31. /// </summary>
  32. WaitSleepJoin = 0x00000020,
  33. Suspended = 0x00000040,
  34. /// <summary>
  35. /// </summary>
  36. AbortRequested = 0x00000080,
  37. /// <summary>
  38. /// </summary>
  39. Aborted = 0x00000100,
  40. } // ThreadState
  41. } // System.Threading