##// 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
SerializedParameterElement.cs
17 lines | 470 B | text/x-csharp | CSharpLexer
/ Implab.ServiceHost / Unity / SerializedParameterElement.cs
using System.Xml;
using System.Xml.Schema;
using System.Xml.Serialization;
namespace Implab.ServiceHost.Unity
{
public class SerializedParameterElement : InjectionParameterElement {
[XmlAttribute("href")]
public string Location { get; set; }
[XmlAnyElement]
public XmlElement[] Content { get; set; }
internal override object Resolve(RegistrationContext context) {
return context.Resolve(this);
}
}
}