/src/LinFu.Proxy.Interfaces/IProxy.cs

http://github.com/philiplaureano/LinFu · C# · 16 lines · 8 code · 1 blank · 7 comment · 0 complexity · 97b84090a3960f2f06a416321001448d MD5 · raw file

  1. using LinFu.AOP.Interfaces;
  2. namespace LinFu.Proxy.Interfaces
  3. {
  4. /// <summary>
  5. /// Represents a dynamically generated proxy instance.
  6. /// </summary>
  7. public interface IProxy
  8. {
  9. /// <summary>
  10. /// The interceptor that will handle all
  11. /// calls made to the proxy instance.
  12. /// </summary>
  13. IInterceptor Interceptor { get; set; }
  14. }
  15. }