view Implab.ServiceHost/Unity/ValueParameterElement.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 ValueParameterElement : InjectionParameterElement
    {
        [XmlText]
        public string Value { get; set; }

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