<PackageReference Include="Castle.Windsor" Version="2.5.3" />

IPool

public interface IPool : IDisposable
Pool implementation contract.
using Castle.MicroKernel.Context; using System; namespace Castle.MicroKernel.Lifestyle.Pool { public interface IPool : IDisposable { object Request(CreationContext context); bool Release(object instance); } }