ThreadLocal<T>.Values Property

Definition

Gets a list containing the values stored by all threads that have accessed this instance.

public:
 property System::Collections::Generic::IList<T> ^ Values { System::Collections::Generic::IList<T> ^ get(); };
public System.Collections.Generic.IList<T> Values { get; }
member this.Values : System.Collections.Generic.IList<'T>
Public ReadOnly Property Values As IList(Of T)

Property Value

A list for all of the values stored by all of the threads that have accessed this instance.

Exceptions

Values stored by all threads are not available because this instance was initialized with the trackAllValues argument set to false in the call to a class constructor.

The ThreadLocal<T> instance has been disposed.

Remarks

Each thread that has ever accessed this instance will contribute to this list the value last stored into the instance. This includes threads that have since exited.

Applies to