/src/LinFu.Proxy.Interfaces/IProxyMethodBuilder.cs

http://github.com/philiplaureano/LinFu · C# · 19 lines · 3 code · 0 blank · 16 comment · 0 complexity · ebc553efaac096a0f8915b0e31e22f1b MD5 · raw file

  1. namespace LinFu.Proxy.Interfaces
  2. {
  3. ///// <summary>
  4. ///// Represents a class that is responsible for
  5. ///// generating proxy methods on a target type.
  6. ///// </summary>
  7. //public interface IProxyMethodBuilder
  8. //{
  9. // /// <summary>
  10. // /// Generates a proxy method on the <paramref name="targetType"/>
  11. // /// that overrides the existing <paramref name="method"/>
  12. // /// implementation.
  13. // /// </summary>
  14. // /// <param name="targetType"></param>
  15. // /// <param name="method"></param>
  16. // void CreateMethod(TypeDefinition targetType,
  17. // MethodInfo method);
  18. //}
  19. }