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