41 lines
1.9 KiB
C#
41 lines
1.9 KiB
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Threading
|
|
{
|
|
/// <summary>The exception that is thrown when recursive entry into a lock is not compatible with the recursion policy for the lock.</summary>
|
|
// Token: 0x02000321 RID: 801
|
|
[Token(Token = "0x2000321")]
|
|
[Serializable]
|
|
public class LockRecursionException : Exception
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.LockRecursionException" /> class with a system-supplied message that describes the error.</summary>
|
|
// Token: 0x06001D4E RID: 7502 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6001D4E")]
|
|
[Address(RVA = "0x29220B0", Offset = "0x2920EB0", VA = "0x1829220B0")]
|
|
public LockRecursionException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.LockRecursionException" /> class with a specified message that describes the error.</summary>
|
|
/// <param name="message">The message that describes the exception. The caller of this constructor must make sure that this string has been localized for the current system culture.</param>
|
|
// Token: 0x06001D4F RID: 7503 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6001D4F")]
|
|
[Address(RVA = "0x2922110", Offset = "0x2920F10", VA = "0x182922110")]
|
|
public LockRecursionException(string message)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.LockRecursionException" /> class with serialized data.</summary>
|
|
/// <param name="info">The object that holds the serialized object data.</param>
|
|
/// <param name="context">The contextual information about the source or destination.</param>
|
|
// Token: 0x06001D50 RID: 7504 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6001D50")]
|
|
[Address(RVA = "0x2922030", Offset = "0x2920E30", VA = "0x182922030")]
|
|
protected LockRecursionException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|