ThreadLocal<T>.Dispose Method

Definition

Releases the resources used by this ThreadLocal<T> instance.

Overloads

Dispose()

Releases all resources used by the current instance of the ThreadLocal<T> class.

Dispose(Boolean)

Releases the resources used by this ThreadLocal<T> instance.

Dispose()

Source:
ThreadLocal.cs
Source:
ThreadLocal.cs
Source:
ThreadLocal.cs

Releases all resources used by the current instance of the ThreadLocal<T> class.

public void Dispose ();

Implements

Remarks

Call Dispose when you are finished using the ThreadLocal<T>. The Dispose method leaves the ThreadLocal<T> in an unusable state. After calling Dispose, you must release all references to the ThreadLocal<T> so the garbage collector can reclaim the memory that the ThreadLocal<T> was occupying.

For more information, see Cleaning Up Unmanaged Resources and Implementing a Dispose Method.

Notes

Always call Dispose before you release your last reference to the ThreadLocal<T>. Otherwise, the resources it is using will not be freed until the garbage collector calls the ThreadLocal<T> object's Finalize method.

See also

Applies to

.NET 9 et autres versions
Produit Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

Dispose(Boolean)

Source:
ThreadLocal.cs
Source:
ThreadLocal.cs
Source:
ThreadLocal.cs

Releases the resources used by this ThreadLocal<T> instance.

protected virtual void Dispose (bool disposing);

Parameters

disposing
Boolean

A Boolean value that indicates whether this method is being called due to a call to Dispose().

Remarks

Unlike most of the members of ThreadLocal<T>, this method is not thread-safe.

See also

Applies to

.NET 9 et autres versions
Produit Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0