/src/LinFu.AOP/Interfaces/ITypeWeaver.cs

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

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