Mercurial > pub > ImplabNet
view Implab.ServiceHost/Unity/ValueParameterElement.cs @ 278:6691aff01de1 v3
Implab: added XmlDefaultSeializer (SerializersPool is now obsolete)
Implab.ServiceHost: rewritten TypeReference (added support for nested types), stable API
author | cin |
---|---|
date | Thu, 03 May 2018 09:59:44 +0300 |
parents | 963b17c275be |
children | e0916ddc9950 |
line wrap: on
line source
using System.ComponentModel; using System.Xml.Serialization; namespace Implab.ServiceHost.Unity { public class ValueParameterElement : InjectionParameterElement { [XmlAttribute("value")] public string Value { get; set; } [XmlText] public string Text { get; set; } string GetTextValue() { return string.IsNullOrEmpty(Value) ? Text : Value; } public override void Visit(InjectionParameterBuilder builder) { var type = builder.ResolveInjectedValueType(TypeName); builder.SetValue(type, TypeDescriptor.GetConverter(type).ConvertFromString(GetTextValue())); } } }