MethodInfo.cs 528 B

12345678910111213141516171819202122232425
  1. //
  2. // System.Reflection/MethodInfo.cs
  3. //
  4. // Author:
  5. // Paolo Molaro ([email protected])
  6. //
  7. // (C) 2001 Ximian, Inc. http://www.ximian.com
  8. //
  9. using System;
  10. namespace System.Reflection {
  11. public abstract class MethodInfo: MethodBase {
  12. public abstract MethodInfo GetBaseDefinition();
  13. protected MethodInfo() {
  14. }
  15. public override MemberTypes MemberType { get {return MemberTypes.Method;} }
  16. public abstract Type ReturnType { get; }
  17. public abstract ICustomAttributeProvider ReturnTypeCustomAttributes { get; }
  18. }
  19. }