/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
- using Mono.Cecil;
- namespace LinFu.AOP.Cecil.Interfaces
- {
- /// <summary>
- /// Represents a type that can modify <see cref="MethodDefinition" /> objects.
- /// </summary>
- public interface IMethodWeaver : IWeaver<MethodDefinition, TypeDefinition>
- {
- }
- }