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