/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
- namespace LinFu.AOP.Interfaces
- {
- /// <summary>
- /// Represents a type that has been modified to intercept field getters and setters.
- /// </summary>
- public interface IFieldInterceptionHost
- {
- /// <summary>
- /// Gets or sets the value indicating the interceptor that will handle field getters and setters.
- /// </summary>
- IFieldInterceptor FieldInterceptor { get; set; }
- }
- }