Mercurial > pub > ImplabNet
view Implab.ServiceHost/Unity/AbstractRegistration.cs @ 273:79110a16cab7 v3
Working on Unity xml configuration: Refactoring in progress
author | cin |
---|---|
date | Thu, 26 Apr 2018 19:35:01 +0300 |
parents | 9d1cca834b05 |
children | 22629bf26121 |
line wrap: on
line source
using System; using System.Xml.Serialization; using Unity.Lifetime; using Unity.Registration; namespace Implab.ServiceHost.Unity { public abstract class AbstractRegistration : ContainerItemElement { /// <summary> /// An optional name for a registration in the container /// </summary> [XmlAttribute("name")] public string Name { get; set; } [XmlElement("signleton", typeof(SimgletonLifetimeElement))] [XmlElement("context", typeof(ContextLifetimeElement))] [XmlElement("container", typeof(ContainerLifetimeElement))] [XmlElement("hierarchy", typeof(HierarchicalLifetimeElement))] public LifetimeElement Lifetime {get; set;} /// <summary> /// A type specification for the service registration, /// </summary> [XmlAttribute("type")] public string RegistrationType { get; set; } public virtual Type ResolveRegistrationType(ContainerContext ctx) { return ctx.Resolve(RegistrationType); } } }