##// END OF EJS Templates
Working on Unity xml configuration
Working on Unity xml configuration

File last commit:

r271:d4d437ec4483 v3
r271:d4d437ec4483 v3
Show More
RegisterElement.cs
23 lines | 819 B | text/x-csharp | CSharpLexer
using System;
using System.Xml.Serialization;
using Unity.Lifetime;
using Unity.Registration;
namespace Implab.ServiceHost.Unity {
[XmlRoot("register", Namespace = Schema.ContainerConfigurationNamespace)]
public class RegisterElement : AbstractRegistration {
/// <summary>
/// An optional type which is registered as a service in the container, must be assignable to <see cref="ProvidesType">.
/// </summary>
[XmlAttribute("type")]
public string ImplementedType { get; set; }
[XmlElement("constructor", typeof(ConstructorInjectionElement))]
[XmlElement("property", typeof(PropertyInjectionElement))]
[XmlElement("method", typeof(MethodInjectionElement))]
public AbstractInjectionElement[] Injectors { get; set; }
}
}