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

File last commit:

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