Castle.MicroKernel.Lifestyle.PoolableLifestyleManager.Release C# (CSharp) Method

Release() public method

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