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; } } }