annotate Implab.ServiceHost/Unity/HierarchicalLifetimeElement.cs @ 274:22629bf26121
v3
Unity xml configuration, alpha2
author |
cin |
date |
Fri, 27 Apr 2018 04:47:52 +0300 |
parents |
79110a16cab7 |
children |
963b17c275be |
rev |
line source |
269
|
1 using Unity.Lifetime;
|
|
2
|
|
3 namespace Implab.ServiceHost.Unity
|
|
4 {
|
|
5 public class HierarchicalLifetimeElement : LifetimeElement {
|
274
|
6 public override LifetimeManager GetLifetimeManager(ContainerBuilder ctx) {
|
269
|
7 return new HierarchicalLifetimeManager();
|
|
8 }
|
|
9 }
|
|
10 } |