2004-01-01 Nick Drochak <ndrochak@gol.com>
authorNick Drochak <nickd@mono-cvs.ximian.com>
Wed, 31 Dec 2003 14:57:41 +0000 (14:57 -0000)
committerNick Drochak <nickd@mono-cvs.ximian.com>
Wed, 31 Dec 2003 14:57:41 +0000 (14:57 -0000)
* RegistryKey.cs: Add some missing overloads.

svn path=/trunk/mcs/; revision=21565

mcs/class/corlib/Microsoft.Win32/ChangeLog
mcs/class/corlib/Microsoft.Win32/RegistryKey.cs

index ee1af91ef7e9c8dd3212cb2161028bea1552fffe..5d7f1240bd68d852abb8fb90b4eef72682fc842a 100755 (executable)
@@ -1,3 +1,7 @@
+2003-12-27  Nick Drochak  <ndrochak@gol.com>\r
+\r
+       * RegistryKey.cs: Add some missing overloads.\r
+\r
 2003-02-10  Nick Drochak  <ndrochak@gol.com>\r
 \r
        * Registry.cs: Class should be sealed and have a private default ctor.\r
@@ -6,7 +10,6 @@
 \r
        * Registry.cs: Added missed field.\r
 \r
-\r
 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
 \r
        * RegistryHive.cs: patch from Jackson Harper that fixes compilation.\r
index ab0c4727bcb509f309b94697ac8ad4ba76e5b7ee..ea9ed73d31bdd3e1fd1aa6619573bad6dce26409 100644 (file)
@@ -81,6 +81,12 @@ namespace Microsoft.Win32 {
                        throw new NotImplementedException ();
                }
                
+               [MonoTODO]
+               public void DeleteSubKey(string subkey, bool shouldThrowWhenKeyMissing)
+               {
+                       throw new NotImplementedException ();
+               }
+               
                [MonoTODO]
                public void DeleteSubKeyTree(string subkey)
                {
@@ -93,6 +99,12 @@ namespace Microsoft.Win32 {
                        throw new NotImplementedException ();
                }
                
+               [MonoTODO]
+               public void DeleteValue(string value, bool shouldThrowWhenKeyMissing)
+               {
+                       throw new NotImplementedException ();
+               }
+               
                [MonoTODO]
                public void Flush()
                {