PageRenderTime 31ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/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
  1. namespace LinFu.AOP.Interfaces
  2. {
  3. /// <summary>
  4. /// Represents a class that can wrap itself around any given method call.
  5. /// </summary>
  6. public interface IAroundInvoke : IBeforeInvoke, IAfterInvoke
  7. {
  8. }
  9. }