##// END OF EJS Templates
Working on Unity container xml configuration
Working on Unity container xml configuration

File last commit:

r269:ff581cff7003 v3
r269:ff581cff7003 v3
Show More
ContextLifetimeElement.cs
9 lines | 276 B | text/x-csharp | CSharpLexer
using Unity.Lifetime;
namespace Implab.ServiceHost.Unity
{
public class ContextLifetimeElement : LifetimeElement {
public override LifetimeManager GetLifetimeManager(ConfigurationContext ctx) {
return new PerResolveLifetimeManager();
}
}
}