##// END OF EJS Templates
preview version of Unity xml configuration
preview version of Unity xml configuration

File last commit:

r272:9d1cca834b05 v3
r272:9d1cca834b05 v3
Show More
ValueParameterElement.cs
13 lines | 335 B | text/x-csharp | CSharpLexer
using System.Xml.Serialization;
namespace Implab.ServiceHost.Unity
{
public class ValueParameterElement : InjectionParameterElement
{
[XmlText]
public string Value { get; set; }
internal override object Resolve(RegistrationContext context) {
return context.Resolve(this);
}
}
}