##// END OF EJS Templates
Working on Unity container xml configuration
Working on Unity container xml configuration

File last commit:

r269:ff581cff7003 v3
r269:ff581cff7003 v3
Show More
MethodInjectorElement.cs
12 lines | 316 B | text/x-csharp | CSharpLexer
using System.Xml.Serialization;
namespace Implab.ServiceHost.Unity {
public class MethodInjectorElement : AbstractInjectorElement {
[XmlAttribute("name")]
public string Name { get; set; }
[XmlElement("params")]
public MethodInjectorParameter[] Parameters { get; set; }
}
}