dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Runtime/Serialization


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Runtime/Serialization SerializationInfo.cs,1.3,1.4
Date: Sun, 06 Apr 2003 20:31:55 -0400

Update of /cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Serialization
In directory subversions:/tmp/cvs-serv606/runtime/System/Runtime/Serialization

Modified Files:
        SerializationInfo.cs 
Log Message:


Add missing "CLSCompliant(false)" attributes.


Index: SerializationInfo.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Serialization/SerializationInfo.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** SerializationInfo.cs        17 Dec 2002 15:07:36 -0000      1.3
--- SerializationInfo.cs        7 Apr 2003 00:31:53 -0000       1.4
***************
*** 111,114 ****
--- 111,115 ----
                                AddValue(name, (Object)value, typeof(Byte));
                        }
+       [CLSCompliant(false)]
        public void AddValue(String name, sbyte value)
                        {
***************
*** 119,122 ****
--- 120,124 ----
                                AddValue(name, (Object)value, typeof(Int16));
                        }
+       [CLSCompliant(false)]
        public void AddValue(String name, ushort value)
                        {
***************
*** 131,134 ****
--- 133,137 ----
                                AddValue(name, (Object)value, typeof(Int32));
                        }
+       [CLSCompliant(false)]
        public void AddValue(String name, uint value)
                        {
***************
*** 139,142 ****
--- 142,146 ----
                                AddValue(name, (Object)value, typeof(Int64));
                        }
+       [CLSCompliant(false)]
        public void AddValue(String name, ulong value)
                        {
***************
*** 202,205 ****
--- 206,210 ----
                                return (byte)GetValue(name, typeof(Byte));
                        }
+       [CLSCompliant(false)]
        public sbyte GetSByte(String name)
                        {
***************
*** 210,213 ****
--- 215,219 ----
                                return (short)GetValue(name, typeof(Int16));
                        }
+       [CLSCompliant(false)]
        public ushort GetUInt16(String name)
                        {
***************
*** 222,225 ****
--- 228,232 ----
                                return (int)GetValue(name, typeof(Int32));
                        }
+       [CLSCompliant(false)]
        public uint GetUInt32(String name)
                        {
***************
*** 230,233 ****
--- 237,241 ----
                                return (long)GetValue(name, typeof(Int64));
                        }
+       [CLSCompliant(false)]
        public ulong GetUInt64(String name)
                        {





reply via email to

[Prev in Thread] Current Thread [Next in Thread]