Author: zoltan
Date: 2005-06-09 08:04:38 -0400 (Thu, 09 Jun 2005)
New Revision: 45692

Modified:
   trunk/mcs/class/corlib/System.Reflection/Assembly.cs
   trunk/mcs/class/corlib/System.Reflection/ChangeLog
   trunk/mcs/class/corlib/System.Reflection/CustomAttributeData.cs
   trunk/mcs/class/corlib/System.Reflection/EventInfo.cs
Log:
2005-06-09  Zoltan Varga  <[EMAIL PROTECTED]>

        * CustomAttributeData.cs EventInfo.cs Assembly.cs: Updates for net 2.0 
beta 2.


Modified: trunk/mcs/class/corlib/System.Reflection/Assembly.cs
===================================================================
--- trunk/mcs/class/corlib/System.Reflection/Assembly.cs        2005-06-09 
12:01:33 UTC (rev 45691)
+++ trunk/mcs/class/corlib/System.Reflection/Assembly.cs        2005-06-09 
12:04:38 UTC (rev 45692)
@@ -746,6 +746,7 @@
                }
 
                [ComVisible (false)]
+               [Obsolete ("Please use Assembly.ManifestModule.GetPEKind() 
instead - this will be removed before Whidbey ships.")]
                public PortableExecutableKinds PortableExecutableKinds {
                        get {
                                ImageFileMachine machine;

Modified: trunk/mcs/class/corlib/System.Reflection/ChangeLog
===================================================================
--- trunk/mcs/class/corlib/System.Reflection/ChangeLog  2005-06-09 12:01:33 UTC 
(rev 45691)
+++ trunk/mcs/class/corlib/System.Reflection/ChangeLog  2005-06-09 12:04:38 UTC 
(rev 45692)
@@ -1,5 +1,7 @@
 2005-06-09  Zoltan Varga  <[EMAIL PROTECTED]>
 
+       * CustomAttributeData.cs EventInfo.cs Assembly.cs: Updates for net 2.0 
beta 2.
+
        * *.cs: Updates for net 2.0 beta 2.
 
 2005-06-07  Zoltan Varga  <[EMAIL PROTECTED]>

Modified: trunk/mcs/class/corlib/System.Reflection/CustomAttributeData.cs
===================================================================
--- trunk/mcs/class/corlib/System.Reflection/CustomAttributeData.cs     
2005-06-09 12:01:33 UTC (rev 45691)
+++ trunk/mcs/class/corlib/System.Reflection/CustomAttributeData.cs     
2005-06-09 12:04:38 UTC (rev 45692)
@@ -56,6 +56,7 @@
                                (namedArgs != null ? 
UnboxValues<CustomAttributeNamedArgument> (namedArgs) : new 
CustomAttributeNamedArgument [0]);
                }
 
+               [ComVisible (true)]
                public ConstructorInfo Constructor {
                        get {
                                return ctorInfo;

Modified: trunk/mcs/class/corlib/System.Reflection/EventInfo.cs
===================================================================
--- trunk/mcs/class/corlib/System.Reflection/EventInfo.cs       2005-06-09 
12:01:33 UTC (rev 45691)
+++ trunk/mcs/class/corlib/System.Reflection/EventInfo.cs       2005-06-09 
12:04:38 UTC (rev 45692)
@@ -40,6 +40,7 @@
 #if NET_2_0
        [ComVisible (true)]
        [ComDefaultInterfaceAttribute (typeof (_EventInfo))]
+       [Serializable]
 #endif
        [ClassInterface(ClassInterfaceType.None)]
        public abstract class EventInfo : MemberInfo {

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to