##// END OF EJS Templates
fixed typo
fixed typo

File last commit:

r295:28af686e24f7 default
r297:00a2d52813ee v3.0.16 default
Show More
ProvidesElement.cs
16 lines | 605 B | text/x-csharp | CSharpLexer
using System.Xml.Serialization;
namespace Implab.ServiceHost.Unity {
public class ProvidesElement {
[XmlAttribute("type")]
public string RegistrationType { get; set; }
[XmlAttribute("name")]
public string RegistrationName { get; set; }
[XmlElement("singleton", typeof(SingletonLifetimeElement))]
[XmlElement("context", typeof(ContextLifetimeElement))]
[XmlElement("container", typeof(ContainerLifetimeElement))]
[XmlElement("hierarchy", typeof(HierarchicalLifetimeElement))]
public LifetimeElement Lifetime {get; set;}
}
}