/src/LinFu.AOP.Interfaces/IAfterInvoke.cs
http://github.com/philiplaureano/LinFu · C# · 16 lines · 7 code · 0 blank · 9 comment · 0 complexity · 5ade14fb9bcc007ba48b54ba0476b236 MD5 · raw file
- namespace LinFu.AOP.Interfaces
- {
- /// <summary>
- /// Represents a class that is invoked after a method call.
- /// </summary>
- public interface IAfterInvoke
- {
- /// <summary>
- /// This method will be called immediately after the actual
- /// method call is executed.
- /// </summary>
- /// <param name="info">The <see cref="IInvocationInfo" /> associated with the method call.</param>
- /// <param name="returnValue">The value returned from the actual method call.</param>
- void AfterInvoke(IInvocationInfo info, object returnValue);
- }
- }