MethodInfo.cs 544 B

1234567891011121314151617181920212223242526
  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. [Serializable]
  12. public abstract class MethodInfo: MethodBase {
  13. public abstract MethodInfo GetBaseDefinition();
  14. protected MethodInfo() {
  15. }
  16. public override MemberTypes MemberType { get {return MemberTypes.Method;} }
  17. public abstract Type ReturnType { get; }
  18. public abstract ICustomAttributeProvider ReturnTypeCustomAttributes { get; }
  19. }
  20. }