Adjust sleeping values
[mono.git] / mcs / class / corlib / System.Reflection / MonoEvent.cs
index ab083ed9a549c7d1066e94d0dfa6ef82f07f643d..093e203cf600d22b103538baadf51d619fb3f523 100644 (file)
@@ -31,6 +31,7 @@
 //
 
 using System;
+using System.Collections.Generic;
 using System.Reflection;
 using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;
@@ -162,5 +163,11 @@ namespace System.Reflection {
                        MemberInfoSerializationHolder.Serialize (info, Name, ReflectedType,
                                ToString(), MemberTypes.Event);
                }
+
+#if NET_4_0
+               public override IList<CustomAttributeData> GetCustomAttributesData () {
+                       return CustomAttributeData.GetCustomAttributes (this);
+               }
+#endif
        }
 }