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: 0x0200033B RID: 827
|
|
[Token(Token = "0x200033B")]
|
|
[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: 0x06001F4F RID: 8015 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6001F4F")]
|
|
[Address(RVA = "0xF2D2C0", Offset = "0xF2C2C0", VA = "0x180F2D2C0")]
|
|
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: 0x06001F50 RID: 8016 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6001F50")]
|
|
[Address(RVA = "0xF2D320", Offset = "0xF2C320", VA = "0x180F2D320")]
|
|
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: 0x06001F51 RID: 8017 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6001F51")]
|
|
[Address(RVA = "0xF2D240", Offset = "0xF2C240", VA = "0x180F2D240")]
|
|
protected LockRecursionException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|