X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2FSystem.Reflection%2FIReflect.cs;h=ce1dcabb3ed598e321d7419f6b522b8bffdd393a;hb=54ecc9c6a18ca300ffdac495b5d3a611c80103fc;hp=f762befb5d765e8b79183a13803a58a3f7371ecd;hpb=64f85a65b023522d3f34e9932e6a843e0ad8fc3b;p=mono.git diff --git a/mcs/class/corlib/System.Reflection/IReflect.cs b/mcs/class/corlib/System.Reflection/IReflect.cs index f762befb5d7..ce1dcabb3ed 100644 --- a/mcs/class/corlib/System.Reflection/IReflect.cs +++ b/mcs/class/corlib/System.Reflection/IReflect.cs @@ -36,9 +36,7 @@ using System.Runtime.InteropServices; namespace System.Reflection { -#if NET_2_0 [ComVisible (true)] -#endif [Guid("AFBF15E5-C37C-11d2-B88E-00A0C9B471B8")] public interface IReflect { @@ -46,26 +44,26 @@ namespace System.Reflection { get; } - FieldInfo GetField (string name, BindingFlags binding_attr); - FieldInfo [] GetFields (BindingFlags binding_attr); - MemberInfo[] GetMember (string name, BindingFlags binding_attr); - MemberInfo[] GetMembers (BindingFlags binding_attr); - MethodInfo GetMethod (string name, BindingFlags binding_attr); - MethodInfo GetMethod (string name, BindingFlags binding_attr, + FieldInfo GetField (string name, BindingFlags bindingAttr); + FieldInfo [] GetFields (BindingFlags bindingAttr); + MemberInfo[] GetMember (string name, BindingFlags bindingAttr); + MemberInfo[] GetMembers (BindingFlags bindingAttr); + MethodInfo GetMethod (string name, BindingFlags bindingAttr); + MethodInfo GetMethod (string name, BindingFlags bindingAttr, Binder binder, Type [] types, ParameterModifier [] modifiers); - MethodInfo[] GetMethods (BindingFlags binding_attr); + MethodInfo[] GetMethods (BindingFlags bindingAttr); - PropertyInfo [] GetProperties (BindingFlags binding_attr); - PropertyInfo GetProperty (string name, BindingFlags binding_attr); - PropertyInfo GetProperty (string name, BindingFlags binding_attr, - Binder binder, Type return_type, Type [] types, + PropertyInfo [] GetProperties (BindingFlags bindingAttr); + PropertyInfo GetProperty (string name, BindingFlags bindingAttr); + PropertyInfo GetProperty (string name, BindingFlags bindingAttr, + Binder binder, Type returnType, Type [] types, ParameterModifier [] modifiers); - object InvokeMember (string name, BindingFlags invoke_attr, + object InvokeMember (string name, BindingFlags invokeAttr, Binder binder, object target, object [] args, ParameterModifier [] modifiers, CultureInfo culture, - string [] named_parameters); + string [] namedParameters); } }