view Implab.ServiceHost/Unity/SimgletonLifetimeElement.cs @ 276:b4e0f81c7425 v3

container configuration docs
author cin
date Sat, 28 Apr 2018 00:11:38 +0300
parents 22629bf26121
children
line wrap: on
line source

using Unity.Lifetime;

namespace Implab.ServiceHost.Unity
{
    public class SimgletonLifetimeElement : LifetimeElement {
        public override LifetimeManager GetLifetimeManager(ContainerBuilder ctx) {
            return new SingletonLifetimeManager();
        }
    }
}