Castle.MicroKernel.Lifestyle.Scoped.DefaultLifetimeScope.DefaultLifetimeScope C# (CSharp) 메소드

DefaultLifetimeScope() 공개 메소드

public DefaultLifetimeScope ( IScopeCache scopeCache = null, Action onAfterCreated = null ) : System
scopeCache IScopeCache
onAfterCreated Action
리턴 System
		public DefaultLifetimeScope(IScopeCache scopeCache = null, Action<Burden> onAfterCreated = null)
		{
			this.scopeCache = scopeCache ?? new ScopeCache();
			this.onAfterCreated = onAfterCreated ?? emptyOnAfterCreated;
		}