/src/LinFu.IoC/Configuration/Interfaces/ITypeLoader.cs
http://github.com/philiplaureano/LinFu · C# · 15 lines · 9 code · 1 blank · 5 comment · 0 complexity · b8f6607e5eae6c28e017f5375e705a7c MD5 · raw file
- using System;
- using LinFu.IoC.Interfaces;
- using LinFu.Reflection;
- namespace LinFu.IoC.Configuration
- {
- /// <summary>
- /// Generates one or more <see cref="Action{T}" /> instances
- /// from a given source type so that it can be used
- /// against an <see cref="IContainer" /> instance.
- /// </summary>
- public interface ITypeLoader : IActionLoader<IServiceContainer, Type>
- {
- }
- }