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