2008-11-17 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / mcs / class / corlib / System.Reflection / MonoField.cs
index 48247af850251151e837a4b4c50c320b4ddefa2c..c061f639665642e89bb793ea20a5854f0894fd15 100644 (file)
@@ -36,10 +36,12 @@ using System;
 using System.Globalization;
 using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;
+using System.Runtime.Serialization;
 
 namespace System.Reflection {
-       
-       internal class MonoField : FieldInfo {
+
+       [Serializable]
+       internal class MonoField : FieldInfo, ISerializable {
                internal IntPtr klass;
                internal RuntimeFieldHandle fhandle;
                string name;
@@ -103,6 +105,8 @@ namespace System.Reflection {
                {
                        if (!IsStatic && obj == null)
                                throw new TargetException ("Non-static field requires a target");
+                       if (!IsLiteral)
+                               CheckGeneric ();
                        return GetValueInternal (obj);
                }
 
@@ -121,6 +125,7 @@ namespace System.Reflection {
                                throw new FieldAccessException ("Cannot set a constant field");
                        if (binder == null)
                                binder = Binder.DefaultBinder;
+                       CheckGeneric ();
                        if (val != null) {
                                object newVal;
                                newVal = binder.ChangeType (val, type, culture);
@@ -141,5 +146,24 @@ namespace System.Reflection {
                        field.fhandle = fhandle;
                        return field;
                }
+
+               // ISerializable
+               public void GetObjectData (SerializationInfo info, StreamingContext context) 
+               {
+                       MemberInfoSerializationHolder.Serialize (info, Name, ReflectedType,
+                               ToString(), MemberTypes.Field);
+               }
+
+#if NET_2_0
+               [MethodImplAttribute(MethodImplOptions.InternalCall)]
+               public override extern object GetRawConstantValue ();
+#endif
+
+               void CheckGeneric () {
+#if NET_2_0
+                       if (DeclaringType.ContainsGenericParameters)
+                               throw new InvalidOperationException ("Late bound operations cannot be performed on fields with types for which Type.ContainsGenericParameters is true.");
+#endif
+           }
        }
 }