TraceEventOpcode.cs 464 B

1234567891011121314151617181920
  1. //-----------------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //-----------------------------------------------------------------------------
  4. namespace System.Runtime
  5. {
  6. using System;
  7. enum TraceEventOpcode
  8. {
  9. Info = 0,
  10. Start = 1,
  11. Stop = 2,
  12. Reply = 6,
  13. Resume = 7,
  14. Suspend = 8,
  15. Send = 9,
  16. Receive = 240
  17. }
  18. }