/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
- namespace LinFu.AOP.Interfaces
- {
- /// <summary>
- /// Represents a type that can intercept activation requests.
- /// </summary>
- public interface IActivatorHost
- {
- /// <summary>
- /// Gets or sets the value indicating the <see cref="ITypeActivator" /> that
- /// will be used to instantiate object types.
- /// </summary>
- ITypeActivator Activator { get; set; }
- }
- }