StringBuilderPooledObjectPolicy Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A policy for pooling StringBuilder instances.
public ref class StringBuilderPooledObjectPolicy : Microsoft::Extensions::ObjectPool::PooledObjectPolicy<System::Text::StringBuilder ^>
public class StringBuilderPooledObjectPolicy : Microsoft.Extensions.ObjectPool.PooledObjectPolicy<System.Text.StringBuilder>
type StringBuilderPooledObjectPolicy = class
inherit PooledObjectPolicy<StringBuilder>
Public Class StringBuilderPooledObjectPolicy
Inherits PooledObjectPolicy(Of StringBuilder)
- Inheritance
Constructors
StringBuilderPooledObjectPolicy() |
Properties
InitialCapacity |
Gets or sets the initial capacity of pooled StringBuilder instances. |
MaximumRetainedCapacity |
Gets or sets the maximum value for Capacity that is allowed to be retained, when Return(StringBuilder) is invoked. |
Methods
Create() |
Creates a |
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(StringBuilder) |
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. |
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. (Inherited from PooledObjectPolicy<T>) |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |