view Implab.ServiceHost/Unity/PropertyInjectionElement.cs @ 272:9d1cca834b05 v3

preview version of Unity xml configuration
author cin
date Thu, 26 Apr 2018 03:14:54 +0300
parents ade80d94dfb5
children 22629bf26121
line wrap: on
line source

using System.Xml.Serialization;

namespace Implab.ServiceHost.Unity {
    public class PropertyInjectionElement : AbstractInjectionElement {

        [XmlAttribute("name")]
        public string Name { get; set; }

        [XmlElement("dependency", typeof(DependencyParameterElement))]
        [XmlElement("value", typeof(ValueParameterElement))]
        [XmlElement("serialized", typeof(SerializedParameterElement))]
        [XmlElement("default", typeof(DefaultParameterElement))]
        public InjectionParameterElement Value { get; set; }

        internal override void Visit(RegistrationContext context) {
            context.Visit(this);
        }
    }
}