Update to the latest IKVM.Reflection
[mono.git] / mcs / class / IKVM.Reflection / PropertyInfo.cs
index b05d07fb0c88bb82b1d92abf1790c9a963b4268a..4d5ce9fb46d89bd54d99059bdf6667ed1d422fa4 100644 (file)
@@ -148,6 +148,16 @@ namespace IKVM.Reflection
                        get { return (Attributes & PropertyAttributes.SpecialName) != 0; }
                }
 
+               public MethodInfo GetMethod
+               {
+                       get { return GetGetMethod(true); }
+               }
+
+               public MethodInfo SetMethod
+               {
+                       get { return GetSetMethod(true); }
+               }
+
                public MethodInfo GetGetMethod()
                {
                        return GetGetMethod(false);