/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
- using System;
- using LinFu.IoC.Interfaces;
- using LinFu.Reflection;
- namespace LinFu.IoC.Configuration
- {
- /// <summary>
- /// Represents a loader that reads a file and converts it
- /// into an equivalent set of a set of <see cref="Action{T}" />
- /// instances that can be applied to a particular
- /// instance of an <see cref="IServiceContainer" /> class.
- /// </summary>
- public interface IContainerLoader : IActionLoader<IServiceContainer, string>
- {
- }
- }