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:
authorJohannes Roith <johannes@mono-cvs.ximian.com>2002-09-16 01:36:21 +0400
committerJohannes Roith <johannes@mono-cvs.ximian.com>2002-09-16 01:36:21 +0400
commita7586e934557e71c42cf6079ef4647d1bfd8f8d2 (patch)
tree7f0f4a145eb4f4b11db5f95024e53576763202b4 /mcs/class/System/Microsoft.Win32
parent8099daa3f332723be12e51a7029d533fb886317c (diff)
throw NotImplemented Exeption()
svn path=/trunk/mcs/; revision=7487
Diffstat (limited to 'mcs/class/System/Microsoft.Win32')
-rw-r--r--mcs/class/System/Microsoft.Win32/SystemEvents.cs107
1 files changed, 91 insertions, 16 deletions
diff --git a/mcs/class/System/Microsoft.Win32/SystemEvents.cs b/mcs/class/System/Microsoft.Win32/SystemEvents.cs
index a8025454b6c..e75309de477 100644
--- a/mcs/class/System/Microsoft.Win32/SystemEvents.cs
+++ b/mcs/class/System/Microsoft.Win32/SystemEvents.cs
@@ -6,30 +6,105 @@
//
// (C) 2002 Johannes Roith
//
-namespace Microsoft.Win32 {
+namespace Microsoft.Win32 {
/// <summary>
/// </summary>
public sealed class SystemEvents : System.EventArgs{
-public static void InvokeOnEventsThread(System.Delegate method)
-{
+ [MonoTODO]
+ public static void InvokeOnEventsThread(System.Delegate method)
+ {
+ throw new System.NotImplementedException ();
+ }
-}
-public static event System.EventHandler DisplaySettingsChanged;
-public static event System.EventHandler EventsThreadShutdown;
-public static event System.EventHandler InstalledFontsChanged;
-public static event System.EventHandler LowMemory;
-public static event System.EventHandler PaletteChanged;
-public static event System.EventHandler PowerModeChanged;
-public static event System.EventHandler SessionEnded;
-public static event System.EventHandler SessionEnding;
-public static event System.EventHandler TimeChanged;
-public static event System.EventHandler TimerElapsed;
-public static event System.EventHandler UserPreferenceChanged;
-public static event System.EventHandler UserPreferenceChanging;
+
+ [MonoTODO]
+ public static event System.EventHandler DisplaySettingsChanged {
+ add { throw new System.NotImplementedException ();}
+ remove { throw new System.NotImplementedException ();}
+ }
+
+
+ [MonoTODO]
+ public static event System.EventHandler EventsThreadShutdown {
+ add { throw new System.NotImplementedException ();}
+ remove { throw new System.NotImplementedException ();}
+ }
+
+
+ [MonoTODO]
+ public static event System.EventHandler InstalledFontsChanged {
+ add { throw new System.NotImplementedException ();}
+ remove { throw new System.NotImplementedException ();}
+ }
+
+
+ [MonoTODO]
+ public static event System.EventHandler LowMemory {
+ add { throw new System.NotImplementedException ();}
+ remove { throw new System.NotImplementedException ();}
+ }
+
+
+ [MonoTODO]
+ public static event System.EventHandler PaletteChanged {
+ add { throw new System.NotImplementedException ();}
+ remove { throw new System.NotImplementedException ();}
+ }
+
+
+ [MonoTODO]
+ public static event System.EventHandler PowerModeChanged {
+ add { throw new System.NotImplementedException ();}
+ remove { throw new System.NotImplementedException ();}
+ }
+
+
+ [MonoTODO]
+ public static event SessionEndedEventHandler SessionEnded {
+ add { throw new System.NotImplementedException ();}
+ remove { throw new System.NotImplementedException ();}
+ }
+
+
+ [MonoTODO]
+ public static event System.EventHandler SessionEnding {
+ add { throw new System.NotImplementedException ();}
+ remove { throw new System.NotImplementedException ();}
+ }
+
+
+ [MonoTODO]
+ public static event System.EventHandler TimeChanged {
+ add { throw new System.NotImplementedException ();}
+ remove { throw new System.NotImplementedException ();}
+ }
+
+
+ [MonoTODO]
+ public static event System.EventHandler TimerElapsed {
+ add { throw new System.NotImplementedException ();}
+ remove { throw new System.NotImplementedException ();}
+ }
+
+
+ [MonoTODO]
+ public static event System.EventHandler UserPreferenceChanged {
+ add { throw new System.NotImplementedException ();}
+ remove { throw new System.NotImplementedException ();}
+ }
+
+
+ [MonoTODO]
+ public static event System.EventHandler UserPreferenceChanging {
+ add { throw new System.NotImplementedException ();}
+ remove { throw new System.NotImplementedException ();}
+ }
+
}
+
}