This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,17 @@
using System;
namespace System.Threading
{
/// <summary>Specifies whether a lock can be entered multiple times by the same thread.</summary>
// Token: 0x02000052 RID: 82
[Serializable]
public enum LockRecursionPolicy
{
/// <summary>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. </summary>
// Token: 0x04000113 RID: 275
NoRecursion,
/// <summary>A thread can enter a lock recursively. Some classes may restrict this capability. </summary>
// Token: 0x04000114 RID: 276
SupportsRecursion
}
}