X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem%2FSystem.Diagnostics%2FTraceLevel.cs;h=f4f0ba6b4f129d5dfa2d8990310daddad22b8818;hb=60d72a0f50aa2294110af41620ae4f6cee078fc6;hp=592518840d69015108fd3d13373a2322ededc612;hpb=67c693c673e3cc8326ce9c79166d8f24cc7c728b;p=mono.git diff --git a/mcs/class/System/System.Diagnostics/TraceLevel.cs b/mcs/class/System/System.Diagnostics/TraceLevel.cs index 592518840d6..f4f0ba6b4f1 100755 --- a/mcs/class/System/System.Diagnostics/TraceLevel.cs +++ b/mcs/class/System/System.Diagnostics/TraceLevel.cs @@ -1,15 +1,24 @@ +// 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 - -namespace System.Diagnostics -{ - /// - /// Specifies what messages to output for the Debug, Trace and TraceSwitch classes. - /// - public enum TraceLevel {Error, Info, Off, Verbose, Warning} +// (C) 2001 Ximian, Inc. http://www.ximian.com + + +namespace System.Diagnostics { + + public enum TraceLevel { + Off = 0, + Error = 1, + Warning = 2, + Info = 3, + Verbose = 4, + } + } +