##// END OF EJS Templates
Fixed promise rejection when there is not specified error handler in the reaction....
Fixed promise rejection when there is not specified error handler in the reaction. FIXED SPELLING IN THE XML CONTAINER CONFIGURATION signleton->singleton Code cleanup Update tests make them working on dotnet core

File last commit:

r295:28af686e24f7 default
r295:28af686e24f7 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;}
}
}