LeakTrackingObjectPoolProvider Class

Definition

Caution

LeakTrackingObjectPoolProvider was only intended for internal use in diagnostic builds of .NET. It never functioned in publicly shipped .NET versions and may be removed in a future release.

An ObjectPoolProvider that produces instances of LeakTrackingObjectPool<T>.

public ref class LeakTrackingObjectPoolProvider : Microsoft::Extensions::ObjectPool::ObjectPoolProvider
public class LeakTrackingObjectPoolProvider : Microsoft.Extensions.ObjectPool.ObjectPoolProvider
[System.Obsolete("LeakTrackingObjectPoolProvider was only intended for internal use in diagnostic builds of .NET. It never functioned in publicly shipped .NET versions and may be removed in a future release.")]
public class LeakTrackingObjectPoolProvider : Microsoft.Extensions.ObjectPool.ObjectPoolProvider
type LeakTrackingObjectPoolProvider = class
    inherit ObjectPoolProvider
[<System.Obsolete("LeakTrackingObjectPoolProvider was only intended for internal use in diagnostic builds of .NET. It never functioned in publicly shipped .NET versions and may be removed in a future release.")>]
type LeakTrackingObjectPoolProvider = class
    inherit ObjectPoolProvider
Public Class LeakTrackingObjectPoolProvider
Inherits ObjectPoolProvider
Inheritance
LeakTrackingObjectPoolProvider
Attributes

Constructors

LeakTrackingObjectPoolProvider(ObjectPoolProvider)

Initializes a new instance of LeakTrackingObjectPoolProvider.

Methods

Create<T>()

Creates an ObjectPool.

(Inherited from ObjectPoolProvider)
Create<T>(IPooledObjectPolicy<T>)

Creates an ObjectPool with the given IPooledObjectPolicy<T>.

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Extension Methods

CreateStringBuilderPool(ObjectPoolProvider)

Creates an ObjectPool<T> that pools StringBuilder instances.

CreateStringBuilderPool(ObjectPoolProvider, Int32, Int32)

Creates an ObjectPool<T> that pools StringBuilder instances.

Applies to