##// END OF EJS Templates
Working on Unity xml configuration: Refactoring in progress
Working on Unity xml configuration: Refactoring in progress

File last commit:

r273:79110a16cab7 v3
r273:79110a16cab7 v3
Show More
DependencyParameterElement.cs
11 lines | 313 B | text/x-csharp | CSharpLexer
/ Implab.ServiceHost / Unity / DependencyParameterElement.cs
using System.Xml.Serialization;
namespace Implab.ServiceHost.Unity {
public class DependencyParameterElement : InjectionParameterElement {
[XmlAttribute("name")]
public string DependencyName { get; set; }
[XmlAttribute("optional")]
public bool Optional { get; set; }
}
}