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

DefaultLifetimeScope() public method

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