/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

  1. using System;
  2. using LinFu.IoC.Interfaces;
  3. using LinFu.Reflection;
  4. namespace LinFu.IoC.Configuration
  5. {
  6. /// <summary>
  7. /// Generates one or more <see cref="Action{T}" /> instances
  8. /// from a given source type so that it can be used
  9. /// against an <see cref="IContainer" /> instance.
  10. /// </summary>
  11. public interface ITypeLoader : IActionLoader<IServiceContainer, Type>
  12. {
  13. }
  14. }