mscorlib(4.0.0.0) API with additions
LockRecursionPolicy.cs
1 namespace System.Threading
2 {
4  [global::__DynamicallyInvokable]
5  public enum LockRecursionPolicy
6  {
8  [global::__DynamicallyInvokable]
11  [global::__DynamicallyInvokable]
13  }
14 }
LockRecursionPolicy
Specifies whether a lock can be entered multiple times by the same thread.
A thread can enter a lock recursively. Some classes may restrict this capability.
If a thread tries to enter a lock recursively, an exception is thrown. Some classes may allow certain...