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

File last commit:

r270:ade80d94dfb5 v3
r270:ade80d94dfb5 v3
Show More
PropertyInjectionElement.cs
11 lines | 478 B | text/x-csharp | CSharpLexer
using System.Xml.Serialization;
namespace Implab.ServiceHost.Unity {
public class PropertyInjectionElement : AbstractInjectionElement {
[XmlElement("dependency", typeof(DependencyParameterElement))]
[XmlElement("value", typeof(ValueParameterElement))]
[XmlElement("serialized", typeof(SerializedParameterElement))]
[XmlElement("default", typeof(DefaultParameterElement))]
public InjectionParameterElement Value { get; set; }
}
}