TraceEventLevel.cs 441 B

123456789101112131415161718
  1. //-----------------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //-----------------------------------------------------------------------------
  4. namespace System.Runtime
  5. {
  6. using System;
  7. enum TraceEventLevel
  8. {
  9. LogAlways = 0,
  10. Critical = 1,
  11. Error = 2,
  12. Warning = 3,
  13. Informational = 4,
  14. Verbose = 5,
  15. }
  16. }