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:
authorAtsushi Eno <atsushieno@gmail.com>2007-08-02 16:32:07 +0400
committerAtsushi Eno <atsushieno@gmail.com>2007-08-02 16:32:07 +0400
commit4ecf370fff31bb006215a46573e9e3e01de99904 (patch)
tree5bd15c49e8a86938c2b972375dcc9337f5f05052 /mcs/class/System/System.Diagnostics/Win32EventLog.cs
parent4ca63a4b2ac7dfd24f2ba7311afe6c83e4b1ced0 (diff)
2007-08-02 Atsushi Enomoto <atsushi@ximian.com>
* EventLogImpl.cs EventLog.cs LocalFileEventLog.cs : Implemented EntryWritten event support. * Win32EventLog.cs, NullEventLog.cs : they need stub overrides. * EventLogEntry.cs : [MonitoringDescription]. * DiagnosticsConfigurationHandler.cs : [Obsolete] svn path=/trunk/mcs/; revision=83277
Diffstat (limited to 'mcs/class/System/System.Diagnostics/Win32EventLog.cs')
-rw-r--r--mcs/class/System/System.Diagnostics/Win32EventLog.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/mcs/class/System/System.Diagnostics/Win32EventLog.cs b/mcs/class/System/System.Diagnostics/Win32EventLog.cs
index 221464dc9f1..cb2d9f727b3 100644
--- a/mcs/class/System/System.Diagnostics/Win32EventLog.cs
+++ b/mcs/class/System/System.Diagnostics/Win32EventLog.cs
@@ -697,6 +697,16 @@ namespace System.Diagnostics
return hEventLog;
}
+ public override void DisableNotification ()
+ {
+ // FIXME: implement
+ }
+
+ public override void EnableNotification ()
+ {
+ // FIXME: implement
+ }
+
private class PInvoke
{
[DllImport ("advapi32.dll", SetLastError=true)]