Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/System.Reflection/IReflect.cs')
-rwxr-xr-xmcs/class/corlib/System.Reflection/IReflect.cs44
1 files changed, 0 insertions, 44 deletions
diff --git a/mcs/class/corlib/System.Reflection/IReflect.cs b/mcs/class/corlib/System.Reflection/IReflect.cs
deleted file mode 100755
index e89c3298a69..00000000000
--- a/mcs/class/corlib/System.Reflection/IReflect.cs
+++ /dev/null
@@ -1,44 +0,0 @@
-//
-// System.Reflection.IReflect.cs
-//
-// Author:
-// Miguel de Icaza (miguel@ximian.com)
-//
-// (C) Ximian, Inc. http://www.ximian.com
-//
-// TODO: Mucho left to implement.
-//
-
-using System.Globalization;
-
-namespace System.Reflection {
-
- public interface IReflect {
-
- Type UnderlyingSystemType {
- 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,
- Binder binder, Type [] types, ParameterModifier [] modifiers);
- MethodInfo[] GetMethods (BindingFlags binding_attr);
-
- 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,
- ParameterModifier [] modifiers);
-
- object InvokeMember (string name, BindingFlags invoke_attr,
- Binder binder, object target, object [] args,
- ParameterModifier [] modifiers,
- CultureInfo culture,
- string [] named_parameters);
-
- }
-}