/src/LinFu.AOP.Interfaces/IBeforeInvoke.cs
http://github.com/philiplaureano/LinFu · C# · 16 lines · 7 code · 0 blank · 9 comment · 0 complexity · fddf1850c765c93ee518b7af960ba8a8 MD5 · raw file
- namespace LinFu.AOP.Interfaces
- {
- /// <summary>
- /// Represents a class that is invoked before a method call.
- /// </summary>
- public interface IBeforeInvoke
- {
- /// <summary>
- /// This method will be called just before the actual
- /// method call is executed.
- /// </summary>
- /// <param name="info">The <see cref="IInvocationInfo" /> associated with the method call.</param>
- /// <seealso cref="IInvocationInfo" />
- void BeforeInvoke(IInvocationInfo info);
- }
- }