annotate Implab.ServiceHost/Unity/ContainerLifetimeElement.cs @ 279:8714471e8d78
v3
Container configuration cleanup, RC2
author |
cin |
date |
Fri, 04 May 2018 18:12:42 +0300 |
parents |
963b17c275be |
children |
|
rev |
line source |
269
|
1 using Unity.Lifetime;
|
|
2
|
|
3 namespace Implab.ServiceHost.Unity
|
|
4 {
|
|
5 public class ContainerLifetimeElement : LifetimeElement {
|
279
|
6 public override LifetimeManager GetLifetime(ContainerBuilder builder) {
|
|
7 return new ContainerControlledLifetimeManager();
|
269
|
8 }
|
279
|
9
|
|
10
|
269
|
11 }
|
|
12 } |