DefaultPooledObjectPolicy<T> Class

Definition

Default implementation for PooledObjectPolicy<T>.

generic <typename T>
 where T : class, gcnew()public ref class DefaultPooledObjectPolicy : Microsoft::Extensions::ObjectPool::IPooledObjectPolicy<T>
generic <typename T>
 where T : class, gcnew()public ref class DefaultPooledObjectPolicy : Microsoft::Extensions::ObjectPool::PooledObjectPolicy<T>
public class DefaultPooledObjectPolicy<T> : Microsoft.Extensions.ObjectPool.IPooledObjectPolicy<T> where T : class, new()
public class DefaultPooledObjectPolicy<T> : Microsoft.Extensions.ObjectPool.PooledObjectPolicy<T> where T : class, new()
type DefaultPooledObjectPolicy<'T (requires 'T : null and 'T : (new : unit -> 'T))> = class
    interface IPooledObjectPolicy<'T (requires 'T : null and 'T : (new : unit -> 'T))>
type DefaultPooledObjectPolicy<'T (requires 'T : null and 'T : (new : unit -> 'T))> = class
    inherit PooledObjectPolicy<'T (requires 'T : null and 'T : (new : unit -> 'T))>
Public Class DefaultPooledObjectPolicy(Of T)
Implements IPooledObjectPolicy(Of T)
Public Class DefaultPooledObjectPolicy(Of T)
Inherits PooledObjectPolicy(Of T)

Type Parameters

T

The type of object which is being pooled.

Inheritance
DefaultPooledObjectPolicy<T>
Inheritance
DefaultPooledObjectPolicy<T>
Implements

Constructors

DefaultPooledObjectPolicy<T>()

Methods

Create()

Creates a 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)
Return(T)

Runs some processing when an object is returned to the pool. Can be used to reset the state of an object and indicate if the object should be returned to the pool.

ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to