TraceLevel.cs 511 B

123456789101112131415161718192021222324
  1. // TraceLevel.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:34:29 UTC
  7. // Source file: all.xml
  8. // URL: http://devresource.hp.com/devresource/Docs/TechPapers/CSharp/all.xml
  9. //
  10. // (C) 2001 Ximian, Inc. http://www.ximian.com
  11. namespace System.Diagnostics {
  12. public enum TraceLevel {
  13. Off = 0,
  14. Error = 1,
  15. Warning = 2,
  16. Info = 3,
  17. Verbose = 4,
  18. }
  19. }