Castle.MicroKernel.Lifestyle.PoolableLifestyleManager.Release C# (CSharp) Méthode

Release() public méthode

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