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

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

using System.Xml.Serialization;

namespace Implab.ServiceHost.Unity {
    public class DependencyParameterElement : InjectionParameterElement {

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

        [XmlAttribute("optional")]
        public bool Optional { get; set; }

        internal override object Resolve(RegistrationContext context) {
            return context.Resolve(this);
        }
    }
}