2002-02-08 Duncan Mak <duncan@ximian.com>
authorDuncan Mak <duncan@mono-cvs.ximian.com>
Fri, 8 Feb 2002 23:11:38 +0000 (23:11 -0000)
committerDuncan Mak <duncan@mono-cvs.ximian.com>
Fri, 8 Feb 2002 23:11:38 +0000 (23:11 -0000)
    * RuntimeArgumentHandle.cs: Added to CVS.

2002-02-08  Duncan Mak  <duncan@ximian.com>

    * UriFormatException.cs: Removed TODO attribute, the docs are
      probably wrong here. In any case, this code compiles and should work.

2002-02-08  Duncan Mak  <duncan@ximian.com>

    * IsolatedStorage.cs: Looked at MemberInfo.cs, another fellow
      abstract class. Oh, that's what it means! Removed unnesscessary
           MonoTODO attributes.

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

mcs/class/System/System/ChangeLog
mcs/class/System/System/UriFormatException.cs
mcs/class/corlib/System.IO.IsolatedStorage/ChangeLog
mcs/class/corlib/System.IO.IsolatedStorage/IsolatedStorage.cs
mcs/class/corlib/System/ChangeLog
mcs/class/corlib/System/RuntimeArgumentHandle.cs [new file with mode: 0644]

index 659e81f579aebaece5a0bbcc9314556abd5b0827..6a77f00c92a103de2bb953c49d7c11587595ebdd 100644 (file)
@@ -1,3 +1,8 @@
+2002-02-08  Duncan Mak  <duncan@ximian.com>
+
+       * UriFormatException.cs: Removed TODO attribute, the docs are
+       probably wrong here. In any case, this code compiles and should work.
+
 2002-01-31  Duncan Mak  <duncan@ximian.com>
 
        * UriFormatException.cs: Added bits for serialization.
index 8c51682a9e63136d4bf48353c695f1e9c227b76c..8bd1813602f122a395fcd5f4730b852bb0a2628a 100755 (executable)
@@ -14,7 +14,6 @@ using System.Runtime.Serialization;
 
 namespace System {
        [Serializable]
-       [MonoTODO] // Doc says this class doesn't implement ISerializable
        public class UriFormatException : FormatException, ISerializable
        {
 
index ee7e6a4b7261f5e4e458848844e655f6da9fefb1..3d810671190e9c7b4230a40215b08086bd8d9c5b 100644 (file)
@@ -1,3 +1,9 @@
+2002-02-08  Duncan Mak  <duncan@ximian.com>
+
+       * IsolatedStorage.cs: Looked at MemberInfo.cs, another fellow
+       abstract class. Oh, that's what it means! Removed unnesscessary
+       MonoTODO attributes.
+
 2002-02-07  Duncan Mak  <duncan@ximian.com>
 
        * IsolatedStorage.cs: Added to CVS, stubbed out the API.
index 60c5e325e25e1174a7c2157102669565dab09c9d..ec087030a1b4e341880a9a328fa61e78e688b0ab 100644 (file)
@@ -20,48 +20,41 @@ namespace System.IO.IsolatedStorage
                }\r
 \r
                // Properties\r
-               [MonoTODO]\r
                public object AssemblyIdentity\r
                {\r
-                       get { return null; }\r
+                       get;\r
                }\r
 \r
                [CLSCompliant (false)]\r
-               [MonoTODO]\r
                public virtual ulong CurrentSize\r
                {\r
-                       get { return 0; }\r
+                       get;\r
                }\r
 \r
-               [MonoTODO]\r
                public object DomainIdentity\r
                {\r
-                       get { return null; }\r
+                       get;\r
                }\r
 \r
                [CLSCompliant (false)]\r
-               [MonoTODO]\r
                public virtual ulong MaximumSize\r
                {\r
-                       get { return 0; }\r
+                       get;\r
                }\r
 \r
-               [MonoTODO]\r
                public IsolatedStorageScope Scope\r
                {\r
-                       get { return 0; }\r
+                       get;\r
                }\r
 \r
-               [MonoTODO]\r
                protected virtual char SeperatorExternal\r
                {\r
-                       get { return Char.MinValue; }\r
+                       get;\r
                }\r
 \r
-               [MonoTODO]\r
                protected virtual char SerperatorInternal\r
                {\r
-                       get { return Char.MinValue; }\r
+                       get;\r
                }\r
 \r
                // Methods\r
index bfc2b4540b40a17675e718fb0bfb2653b9afa6b9..c27b65ed1341d0a876cdb3caadaee902e70fec55 100644 (file)
@@ -1,3 +1,6 @@
+2002-02-08  Duncan Mak  <duncan@ximian.com>
+
+       * RuntimeArgumentHandle.cs: Added to CVS.
 
 Fri Feb 8 19:14:54 CET 2002 Paolo Molaro <lupus@ximian.com>
 
diff --git a/mcs/class/corlib/System/RuntimeArgumentHandle.cs b/mcs/class/corlib/System/RuntimeArgumentHandle.cs
new file mode 100644 (file)
index 0000000..790f3c1
--- /dev/null
@@ -0,0 +1,16 @@
+//
+// System.RuntimeArgumentHandle.cs
+//
+// Author: Duncan Mak (duncan@ximian.com)
+//
+// (C) Ximian, Inc. http://www.ximian.com
+//
+
+namespace System
+{
+       public struct RuntimeArgumentHandle
+       {
+               // This class has no members, its only use is for supporting
+               // va_args from C and C++.
+       }
+}