##// END OF EJS Templates
container configuration docs
container configuration docs

File last commit:

r275:6fefd5811b9b v3
r276:b4e0f81c7425 v3
Show More
IInjectionArray.cs
11 lines | 228 B | text/x-csharp | CSharpLexer
using System.Collections.Generic;
namespace Implab.ServiceHost.Unity
{
public interface IArrayInjectionParameter {
string TypeName { get; }
IEnumerable<IInjectionParameter> Items { get; }
}
}