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:
authorJonathan Pryor <jpryor@novell.com>2002-06-09 22:06:07 +0400
committerJonathan Pryor <jpryor@novell.com>2002-06-09 22:06:07 +0400
commitf7a8fc051bdb62a5f648b3cedb6e10ca47d22a12 (patch)
tree20b3b0cbc161666bda40e40abfda194a59c5f16b /mcs/class/System/System.Diagnostics/EventLogEntryType.cs
parentd505910c8da8d7d0002239d3da62a6fc0450f294 (diff)
* EntryWrittenEventArgs.cs: Implemented
* EntryWrittenEventHandler.cs: Implemented * EventLog.cs: Stubbed out * EventLogEntry.cs: Stubbed out * EventLogEntryCOllection.cs: Implemented. * EventLogEntryType.cs: Implemented * EventLogInstaller.cs: Stubbed out * EventLogPermission.cs: Stubbed out * EventLogPermissionAccess.cs: Implemented * EventLogPermissionAttribute.cs: Stubbed out * EventLogPermissionEntry.cs: Stubbed out * EventLogPermissionEntryCollection.cs: Stubbed out * EventLogTraceListener.cs: Stubbed out svn path=/trunk/mcs/; revision=5191
Diffstat (limited to 'mcs/class/System/System.Diagnostics/EventLogEntryType.cs')
-rw-r--r--mcs/class/System/System.Diagnostics/EventLogEntryType.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/mcs/class/System/System.Diagnostics/EventLogEntryType.cs b/mcs/class/System/System.Diagnostics/EventLogEntryType.cs
new file mode 100644
index 00000000000..0d52a79f31c
--- /dev/null
+++ b/mcs/class/System/System.Diagnostics/EventLogEntryType.cs
@@ -0,0 +1,24 @@
+//
+// System.Diagnostics.EventLogEntryType.cs
+//
+// Authors:
+// Jonathan Pryor (jonpryor@vt.edu)
+//
+// (C) 2002
+//
+
+using System;
+using System.Diagnostics;
+
+namespace System.Diagnostics {
+
+ [Serializable]
+ public enum EventLogEntryType {
+ Error = 0x01,
+ Warning = 0x02,
+ Information = 0x04,
+ SuccessAudit = 0x08,
+ FailureAudit = 0x10
+ }
+}
+