/src/LinFu.IoC/Configuration/Interfaces/IMethodFinderWithContainer.cs
C# | 20 lines | 10 code | 1 blank | 9 comment | 0 complexity | a09369efc446ff099fa3c33bca5c73f9 MD5 | raw file
1using System.Reflection; 2using LinFu.IoC.Interfaces; 3 4namespace LinFu.IoC.Configuration.Interfaces 5{ 6 /// <summary> 7 /// Represents a method finder that uses a <see cref="IServiceContainer" /> instance 8 /// during its method searches. 9 /// </summary> 10 /// <typeparam name="TMethod"></typeparam> 11 public interface IMethodFinderWithContainer<TMethod> : IMethodFinder<TMethod> 12 where TMethod : MethodBase 13 { 14 /// <summary> 15 /// Gets the value indicating the service container that will be used in the 16 /// method search. 17 /// </summary> 18 IServiceContainer Container { get; } 19 } 20}