##// 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:

r289:95896f882995 v3.0.14 v3
r295:28af686e24f7 default
Show More
ValueElement.cs
35 lines | 907 B | text/x-csharp | CSharpLexer
cin
Added tests for Implab.ServiceHost.Unity configuration loader.
r289 using System.Collections.Generic;
using System.Xml.Serialization;
namespace Implab.ServiceHost.Unity {
public class ValueElement : AbstractRegistration, IInstanceRegistration {
[XmlAttribute("value")]
public string Value { get; set; }
[XmlText]
public string Text { get; set; }
string GetTextValue() {
return string.IsNullOrEmpty(Value) ? Text : Value;
}
public string TypeName {
get {
return RegistrationType;
}
}
public IEnumerable<IInjectionParameter> MemberInjections {
get {
yield return new ValueParameterElement {
Value = Value,
Text = Text
};
}
}
public override void Visit(ContainerBuilder builder) {
builder.Visit(this);
}
}
}