Castle.MicroKernel.Lifestyle.ThreadScopeAccessor.GetScope C# (CSharp) Метод

GetScope() публичный Метод

public GetScope ( CreationContext context ) : ILifetimeScope
context Castle.MicroKernel.Context.CreationContext
Результат ILifetimeScope
		public ILifetimeScope GetScope(CreationContext context)
		{
			var currentThreadId = GetCurrentThreadId();
			return items.GetOrAdd(currentThreadId, id => new DefaultLifetimeScope());
		}