/src/LinFu.IoC/Configuration/Interfaces/IContainerActivationContext.cs

http://github.com/philiplaureano/LinFu · C# · 18 lines · 9 code · 1 blank · 8 comment · 0 complexity · 3c1a590c4d4b3bac788e8f446a658f65 MD5 · raw file

  1. using LinFu.AOP.Interfaces;
  2. using LinFu.IoC.Interfaces;
  3. namespace LinFu.IoC.Configuration.Interfaces
  4. {
  5. /// <summary>
  6. /// Represents a class that describes a request to instantiate a particular object type using a given
  7. /// <see cref="IServiceContainer" /> instance.
  8. /// </summary>
  9. public interface IContainerActivationContext : IActivationContext
  10. {
  11. /// <summary>
  12. /// Gets the value indicating the <see cref="IServiceContainer" /> instance
  13. /// that will instantiate the <see cref="IActivationContext.TargetType" />.
  14. /// </summary>
  15. IServiceContainer Container { get; }
  16. }
  17. }