/src/LinFu.AOP.Interfaces/IActivatorHost.cs

http://github.com/philiplaureano/LinFu · C# · 14 lines · 7 code · 0 blank · 7 comment · 0 complexity · 7bc52b6d93799e0942d4a0b0bc5b5d3d MD5 · raw file

  1. namespace LinFu.AOP.Interfaces
  2. {
  3. /// <summary>
  4. /// Represents a type that can intercept activation requests.
  5. /// </summary>
  6. public interface IActivatorHost
  7. {
  8. /// <summary>
  9. /// Gets or sets the value indicating the <see cref="ITypeActivator" /> that
  10. /// will be used to instantiate object types.
  11. /// </summary>
  12. ITypeActivator Activator { get; set; }
  13. }
  14. }