##// 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
DefaultParameterElement.cs
8 lines | 303 B | text/x-csharp | CSharpLexer
namespace Implab.ServiceHost.Unity
{
public class DefaultParameterElement : InjectionParameterElement {
internal override object Resolve(InjectionValueContext context) {
var type = context.ResolveType(TypeName);
return Safe.CreateDefaultValue(type);
}
}
}