Moved chain building and validation from Mono.Security to System
[mono.git] / mcs / class / System.XML / System.Xml.Serialization / ReflectionHelper.cs
index 0461aa75d9c71dd5e2ea87a864be2108d9d93d19..a44b9b836f821ea8a82251d34bdff5bce3a77c41 100644 (file)
@@ -70,12 +70,20 @@ namespace System.Xml.Serialization
                {
                        return new InvalidOperationException ("There was an error reflecting '" + map.TypeFullName + "': " + message);
                }
-               
+
+#if NET_2_0
+               static readonly ParameterModifier [] empty_modifiers = new ParameterModifier [0];
+#endif         
+
                public static void CheckSerializableType (Type type, bool allowPrivateConstructors)
                {
                        if (type.IsArray) return;
                        
+#if NET_2_0
+                       if (!allowPrivateConstructors && type.GetConstructor (BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance, null, Type.EmptyTypes, empty_modifiers) == null && !type.IsAbstract && !type.IsValueType)
+#else
                        if (!allowPrivateConstructors && type.GetConstructor (Type.EmptyTypes) == null && !type.IsAbstract && !type.IsValueType)
+#endif
                                throw new InvalidOperationException (type.FullName + " cannot be serialized because it does not have a default public constructor");
                                
                        if (type.IsInterface && !TypeTranslator.GetTypeData (type).IsListType)