Mercurial > pub > ImplabNet
view Implab.ServiceHost/Unity/ValueElement.cs @ 280:f07be402ab02 v3
Added Trace<T>.Debug(...) method for debug messages
Added ContainerBuilde.LoadConfig(Uri) method
author | cin |
---|---|
date | Fri, 25 May 2018 19:15:26 +0300 |
parents | 8714471e8d78 |
children |
line wrap: on
line source
using System.Collections.Generic; using System.Xml.Serialization; namespace Implab.ServiceHost.Unity { public class ValueElement : AbstractRegistration, IInstanceRegistration { [XmlAttribute("value")] public string Value { get; set; } [XmlText] public string Text { get; set; } string GetTextValue() { return string.IsNullOrEmpty(Value) ? Text : Value; } public string TypeName { get { return RegistrationType; } } public IEnumerable<IInjectionParameter> MemberInjections { get { yield return new ValueParameterElement { Value = Value, Text = Text }; } } public override void Visit(ContainerBuilder builder) { builder.Visit(this); } } }