/src/LinFu.AOP.Interfaces/IAroundInvoke.cs
http://github.com/philiplaureano/LinFu · C# · 9 lines · 6 code · 0 blank · 3 comment · 0 complexity · d792c830077fc21709bb8559f0d33993 MD5 · raw file
- namespace LinFu.AOP.Interfaces
- {
- /// <summary>
- /// Represents a class that can wrap itself around any given method call.
- /// </summary>
- public interface IAroundInvoke : IBeforeInvoke, IAfterInvoke
- {
- }
- }