Castle.MicroKernel.Lifestyle.PoolableLifestyleManager.Release C# (CSharp) 메소드

Release() 공개 메소드

public Release ( object instance ) : bool
instance object
리턴 bool
		public override bool Release(object instance)
		{
			if (pool != null)
			{
				return pool.Release(instance);
			}
			return false;
		}