/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
- using LinFu.AOP.Interfaces;
- using LinFu.IoC.Interfaces;
- namespace LinFu.IoC.Configuration.Interfaces
- {
- /// <summary>
- /// Represents a class that describes a request to instantiate a particular object type using a given
- /// <see cref="IServiceContainer" /> instance.
- /// </summary>
- public interface IContainerActivationContext : IActivationContext
- {
- /// <summary>
- /// Gets the value indicating the <see cref="IServiceContainer" /> instance
- /// that will instantiate the <see cref="IActivationContext.TargetType" />.
- /// </summary>
- IServiceContainer Container { get; }
- }
- }