Mercurial > pub > ImplabNet
view Implab.ServiceHost/Unity/RegisterElement.cs @ 281:e0916ddc9950 v3 tip
code cleanup and refactoring
author | cin |
---|---|
date | Fri, 01 Jun 2018 21:35:24 +0300 |
parents | 8714471e8d78 |
children |
line wrap: on
line source
using System; using System.Collections.Generic; using System.Xml.Serialization; using Unity.Lifetime; using Unity.Registration; namespace Implab.ServiceHost.Unity { [XmlRoot("register", Namespace = Schema.ContainerConfigurationNamespace)] public class RegisterElement : AbstractRegistration, ITypeRegistration { /// <summary> /// An optional type which is registered as a service in the container, must be assignable to <see cref="ProvidesType">. /// </summary> [XmlAttribute("mapTo")] public string MapToType { get; set; } [XmlElement("constructor", typeof(ConstructorInjectionElement))] [XmlElement("property", typeof(PropertyInjectionElement))] [XmlElement("method", typeof(MethodInjectionElement))] public AbstractMemberInjection[] Injectors { get; set; } IEnumerable<ITypeMemberInjection> ITypeRegistration.MemberInjections { get { return Injectors; } } public Type GetImplementationType(ContainerBuilder builder) { return builder.ResolveType(MapToType); } public override void Visit(ContainerBuilder builder) { builder.Visit(this); } } }