ReaderWriterLockSlim.CurrentReadCount Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets the total number of unique threads that have entered the lock in read mode.
Assembly: System.Core (in System.Core.dll)
Property Value
Type: System.Int32The number of unique threads that have entered the lock in read mode.
A thread is counted only once, even if the lock allows recursion and the thread has entered read mode multiple times.
Use this property only for debugging, profiling, and logging purposes, and not to control the behavior of an algorithm. The results can change as soon as they have been calculated. Therefore, it is not safe to make decisions based on this property.