AbstractRegistration.cs
34 lines
| 1.0 KiB
| text/x-csharp
|
CSharpLexer
cin
|
r269 | using System; | |
using System.Xml.Serialization; | |||
using Unity.Lifetime; | |||
using Unity.Registration; | |||
namespace Implab.ServiceHost.Unity | |||
{ | |||
cin
|
r273 | public abstract class AbstractRegistration : ContainerItemElement { | |
cin
|
r269 | ||
/// <summary> | |||
/// An optional name for a registration in the container | |||
/// </summary> | |||
[XmlAttribute("name")] | |||
public string Name { | |||
get; set; | |||
} | |||
cin
|
r271 | [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> | |||
cin
|
r273 | [XmlAttribute("type")] | |
public string RegistrationType { get; set; } | |||
cin
|
r271 | ||
cin
|
r273 | public virtual Type ResolveRegistrationType(ContainerContext ctx) { | |
return ctx.Resolve(RegistrationType); | |||
} | |||
cin
|
r269 | } | |
} |