using System.Xml.Serialization; namespace Implab.ServiceHost.Unity { public class ValueParameterElement : InjectionParameterElement { [XmlText] [XmlAttribute("value")] public string Value { get; set; } internal override object Resolve(RegistrationContext context) { return context.Resolve(this); } } }