EventResetMode.cs 580 B

12345678910111213141516171819202122
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the MIT license.
  3. // See the LICENSE file in the project root for more information.
  4. /*=============================================================================
  5. **
  6. ** Enum: EventResetMode
  7. **
  8. **
  9. ** Purpose: Enum to determine the Event type to create
  10. **
  11. **
  12. =============================================================================*/
  13. namespace System.Threading
  14. {
  15. public enum EventResetMode
  16. {
  17. AutoReset = 0,
  18. ManualReset = 1
  19. }
  20. }