/src/LinFu.AOP.Interfaces/IFieldInterceptionHost.cs

http://github.com/philiplaureano/LinFu · C# · 13 lines · 7 code · 0 blank · 6 comment · 0 complexity · 94765e1620a40b904f08e49ef6805c68 MD5 · raw file

  1. namespace LinFu.AOP.Interfaces
  2. {
  3. /// <summary>
  4. /// Represents a type that has been modified to intercept field getters and setters.
  5. /// </summary>
  6. public interface IFieldInterceptionHost
  7. {
  8. /// <summary>
  9. /// Gets or sets the value indicating the interceptor that will handle field getters and setters.
  10. /// </summary>
  11. IFieldInterceptor FieldInterceptor { get; set; }
  12. }
  13. }