Switches (Boolean & Trace) should be working now. Behavior of user-provided
[mono.git] / mcs / class / System / System.Diagnostics / EventLogEntryType.cs
1 //
2 // System.Diagnostics.EventLogEntryType.cs
3 //
4 // Authors:
5 //   Jonathan Pryor (jonpryor@vt.edu)
6 //
7 // (C) 2002
8 //
9
10 using System;
11 using System.Diagnostics;
12
13 namespace System.Diagnostics {
14
15         [Serializable]
16         public enum EventLogEntryType {
17                 Error = 0x01,
18                 Warning = 0x02,
19                 Information = 0x04,
20                 SuccessAudit = 0x08,
21                 FailureAudit = 0x10
22         }
23 }
24