/src/LinFu.IoC/Configuration/Interfaces/IMethodFinderWithContainer.cs
http://github.com/philiplaureano/LinFu · C# · 20 lines · 10 code · 1 blank · 9 comment · 0 complexity · a09369efc446ff099fa3c33bca5c73f9 MD5 · raw file
- using System.Reflection;
- using LinFu.IoC.Interfaces;
- namespace LinFu.IoC.Configuration.Interfaces
- {
- /// <summary>
- /// Represents a method finder that uses a <see cref="IServiceContainer" /> instance
- /// during its method searches.
- /// </summary>
- /// <typeparam name="TMethod"></typeparam>
- public interface IMethodFinderWithContainer<TMethod> : IMethodFinder<TMethod>
- where TMethod : MethodBase
- {
- /// <summary>
- /// Gets the value indicating the service container that will be used in the
- /// method search.
- /// </summary>
- IServiceContainer Container { get; }
- }
- }