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

PooledAttribute

public sealed class PooledAttribute : LifestyleAttribute
Indicates that the target components wants a pooled lifestyle.
public int InitialPoolSize { get; }

Gets the initial size of the pool.

public int MaxPoolSize { get; }

Gets the maximum pool size.

public PooledAttribute()

Initializes a new instance of the PooledAttribute class using the default initial pool size (5) and the max pool size (15).

public PooledAttribute(int initialPoolSize, int maxPoolSize)

Initializes a new instance of the PooledAttribute class.