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

http://github.com/philiplaureano/LinFu · C# · 16 lines · 9 code · 1 blank · 6 comment · 0 complexity · 12df0040c0cc1c5c52205991978297d7 MD5 · raw file

  1. using System;
  2. using LinFu.IoC.Interfaces;
  3. using LinFu.Reflection;
  4. namespace LinFu.IoC.Configuration
  5. {
  6. /// <summary>
  7. /// Represents a loader that reads a file and converts it
  8. /// into an equivalent set of a set of <see cref="Action{T}" />
  9. /// instances that can be applied to a particular
  10. /// instance of an <see cref="IServiceContainer" /> class.
  11. /// </summary>
  12. public interface IContainerLoader : IActionLoader<IServiceContainer, string>
  13. {
  14. }
  15. }