[bcl] Add more reflection types to monotouch
[mono.git] / mcs / class / corlib / System.Reflection.Emit / AssemblyBuilderAccess.cs
index 8a80a1ad7570eb11e54fd7e1a66b82355bb2022b..d9d588bdac8cb05966ca4f8046433022ba109ae3 100644 (file)
@@ -32,18 +32,14 @@ using System.Runtime.InteropServices;
 
 namespace System.Reflection.Emit
 {
-#if NET_2_0
        [ComVisible (true)]
-#endif
-  [Flags]
-  public enum AssemblyBuilderAccess
-  {
-    Run = 1,
-    Save = 2,
-    RunAndSave = 3
-#if NET_2_0
-       ,
-       ReflectionOnly = 6
-#endif
+       [Serializable]
+       [Flags]
+       public enum AssemblyBuilderAccess {
+               Run = 1,
+               Save = 2,
+               RunAndSave = 3,
+               ReflectionOnly = 6,
+               RunAndCollect = 9
   }
 }