view Implab.ServiceHost/Unity/DefaultParameterElement.cs @ 277:963b17c275be v3

Refactoring Added <array> element to injection parameters Working on registrations of factories
author cin
date Sat, 28 Apr 2018 18:48:09 +0300
parents 6fefd5811b9b
children 6691aff01de1
line wrap: on
line source

namespace Implab.ServiceHost.Unity
{
    public class DefaultParameterElement : InjectionParameterElement {
        public string Value {
            get { return null; }
        }

        public override void Visit(InjectionValueBuilder builder) {
            var type = builder.ResolveInjectedValueType(TypeName);
            builder.SetValue(type, Safe.CreateDefaultValue(type));
        }
    }
}