| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // System.Reflection.MemberInfo.cs
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- // TODO: Mucho left to implement.
- //
- namespace System.Reflection {
- public abstract class MemberInfo : ICustomAttributeProvider {
- public abstract Type DeclaringType {
- get;
- }
- public abstract MemberTypes MemberType {
- get;
- }
- public abstract string Name {
- get;
- }
- public abstract Type ReflectedType {
- get;
- }
- public abstract bool IsDefined (Type attribute_type, bool inherit);
- public abstract object [] GetCustomAttributes (bool inherit);
- public abstract object [] GetCustomAttributes (Type attribute_type, bool inherit);
- }
- }
|