/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
- using LinFu.AOP.Interfaces;
- namespace LinFu.Proxy.Interfaces
- {
- /// <summary>
- /// Represents a dynamically generated proxy instance.
- /// </summary>
- public interface IProxy
- {
- /// <summary>
- /// The interceptor that will handle all
- /// calls made to the proxy instance.
- /// </summary>
- IInterceptor Interceptor { get; set; }
- }
- }