/src/LinFu.AOP/Interfaces/IMethodWeaver.cs

http://github.com/philiplaureano/LinFu · C# · 11 lines · 7 code · 1 blank · 3 comment · 0 complexity · 708d6a7960a20ff02e769da1e1b67ad0 MD5 · raw file

  1. using Mono.Cecil;
  2. namespace LinFu.AOP.Cecil.Interfaces
  3. {
  4. /// <summary>
  5. /// Represents a type that can modify <see cref="MethodDefinition" /> objects.
  6. /// </summary>
  7. public interface IMethodWeaver : IWeaver<MethodDefinition, TypeDefinition>
  8. {
  9. }
  10. }