using System;
namespace System.Threading
{
/// Specifies whether a lock can be entered multiple times by the same thread.
// Token: 0x02000052 RID: 82
[Serializable]
public enum LockRecursionPolicy
{
/// If a thread tries to enter a lock recursively, an exception is thrown. Some classes may allow certain recursions when this setting is in effect.
// Token: 0x04000113 RID: 275
NoRecursion,
/// A thread can enter a lock recursively. Some classes may restrict this capability.
// Token: 0x04000114 RID: 276
SupportsRecursion
}
}