ThreadState.cs 927 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. /// <summary>
  20. /// </summary>
  21. Background = 0x00000004,
  22. /// <summary>
  23. /// </summary>
  24. Unstarted = 0x00000008,
  25. /// <summary>
  26. /// </summary>
  27. Stopped = 0x00000010,
  28. /// <summary>
  29. /// </summary>
  30. WaitSleepJoin = 0x00000020,
  31. /// <summary>
  32. /// </summary>
  33. AbortRequested = 0x00000080,
  34. /// <summary>
  35. /// </summary>
  36. Aborted = 0x00000100,
  37. } // ThreadState
  38. } // System.Threading