PageRenderTime 17ms CodeModel.GetById 10ms RepoModel.GetById 0ms app.codeStats 0ms

/src/LinFu.AOP.Interfaces/IModifiableType.cs

http://github.com/philiplaureano/LinFu
C# | 15 lines | 7 code | 0 blank | 8 comment | 0 complexity | d1d737a0e68b76d84009ff50d84eb476 MD5 | raw file
  1. namespace LinFu.AOP.Interfaces
  2. {
  3. /// <summary>
  4. /// Represents a type that has been modified to support
  5. /// pervasive method interception.
  6. /// </summary>
  7. public interface IModifiableType : IMethodReplacementHost, IAroundInvokeHost
  8. {
  9. /// <summary>
  10. /// Gets or sets the value indicating whether or not
  11. /// method interception should be disabled.
  12. /// </summary>
  13. bool IsInterceptionDisabled { get; set; }
  14. }
  15. }