ReaderWriterLockSlim.RecursiveReadCount Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets the number of times the current thread has entered the lock in read mode, as an indication of recursion.
Assembly: System.Core (in System.Core.dll)
Property Value
Type: System.Int320 (zero) if the current thread has not entered read mode, 1 if the thread has entered read mode but has not entered it recursively, or n if the thread has entered the lock recursively n - 1 times.
Show: