##// END OF EJS Templates
Unity xml configuration, alpha2
Unity xml configuration, alpha2

File last commit:

r274:22629bf26121 v3
r274:22629bf26121 v3
Show More
DependencyParameterElement.cs
15 lines | 449 B | text/x-csharp | CSharpLexer
/ Implab.ServiceHost / Unity / DependencyParameterElement.cs
using System.Xml.Serialization;
namespace Implab.ServiceHost.Unity {
public class DependencyParameterElement : InjectionParameterElement, IDependencyReference {
[XmlAttribute("name")]
public string DependencyName { get; set; }
[XmlAttribute("optional")]
public bool Optional { get; set; }
internal override void Visit(InjectionValueBuilder builder) {
builder.Visit(this);
}
}
}