Castle.MicroKernel.Lifestyle.Scoped.ThreadStaticLifetimeScope.ThreadStaticLifetimeScope C# (CSharp) Method

ThreadStaticLifetimeScope() public method

public ThreadStaticLifetimeScope ( IKernel container ) : System
container IKernel
return System
		public ThreadStaticLifetimeScope(IKernel container)
		{
			var parent = ObtainCurrentScope();
			if (parent != null)
			{
				parentScope = parent;
			}
			SetCurrentScope(this);
		}

Same methods

ThreadStaticLifetimeScope::ThreadStaticLifetimeScope ( IWindsorContainer container ) : System