Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Chaban <serge@mono-cvs.ximian.com>2001-09-07 19:19:30 +0400
committerSergey Chaban <serge@mono-cvs.ximian.com>2001-09-07 19:19:30 +0400
commit4c8bdd6194abc2eb2cb00e691bac5c456650d133 (patch)
tree51ceddf527291eb451000a4bb712e633c6f9de9a /mcs/class/System/System.Diagnostics/TraceLevel.cs
parent4fee95698492d6c6828a76fb5ed61bdb7602688d (diff)
Replaced with specs-compliant enum.
svn path=/trunk/mcs/; revision=754
Diffstat (limited to 'mcs/class/System/System.Diagnostics/TraceLevel.cs')
-rwxr-xr-xmcs/class/System/System.Diagnostics/TraceLevel.cs46
1 files changed, 36 insertions, 10 deletions
diff --git a/mcs/class/System/System.Diagnostics/TraceLevel.cs b/mcs/class/System/System.Diagnostics/TraceLevel.cs
index 592518840d6..ddd88595ff3 100755
--- a/mcs/class/System/System.Diagnostics/TraceLevel.cs
+++ b/mcs/class/System/System.Diagnostics/TraceLevel.cs
@@ -1,15 +1,41 @@
+// TraceLevel.cs
//
-// System.Diagnostics.TraceLevel.cs Enumeration
+// This code was automatically generated from
+// ECMA CLI XML Library Specification.
+// Generator: libgen.xsl [1.0; (C) Sergey Chaban (serge@wildwestsoftware.com)]
+// Created: Wed, 5 Sep 2001 06:34:29 UTC
+// Source file: all.xml
+// URL: http://devresource.hp.com/devresource/Docs/TechPapers/CSharp/all.xml
//
-// Author:
-// John R. Hicks (angryjohn69@nc.rr.com)
-//
-// (C) 2001
+// (C) 2001 Ximian, Inc. http://www.ximian.com
+
+
+namespace System.Diagnostics {
+
-namespace System.Diagnostics
-{
/// <summary>
- /// Specifies what messages to output for the Debug, Trace and TraceSwitch classes.
/// </summary>
- public enum TraceLevel {Error, Info, Off, Verbose, Warning}
-}
+ public enum TraceLevel {
+
+ /// <summary>
+ /// </summary>
+ Off = 0,
+
+ /// <summary>
+ /// </summary>
+ Error = 1,
+
+ /// <summary>
+ /// </summary>
+ Warning = 2,
+
+ /// <summary>
+ /// </summary>
+ Info = 3,
+
+ /// <summary>
+ /// </summary>
+ Verbose = 4,
+ } // TraceLevel
+
+} // System.Diagnostics