Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

43 lines
2.1 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Threading
{
/// <summary>The exception that is thrown when a method requires the caller to own the lock on a given Monitor, and the method is invoked by a caller that does not own that lock.</summary>
// Token: 0x0200032E RID: 814
[Token(Token = "0x200032E")]
[ComVisible(true)]
[Serializable]
public class SynchronizationLockException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.SynchronizationLockException" /> class with default properties.</summary>
// Token: 0x06001D90 RID: 7568 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001D90")]
[Address(RVA = "0x2927F20", Offset = "0x2926D20", VA = "0x182927F20")]
public SynchronizationLockException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.SynchronizationLockException" /> class with a specified error message.</summary>
/// <param name="message">The error message that explains the reason for the exception.</param>
// Token: 0x06001D91 RID: 7569 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001D91")]
[Address(RVA = "0x2927EF0", Offset = "0x2926CF0", VA = "0x182927EF0")]
public SynchronizationLockException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.SynchronizationLockException" /> class with serialized data.</summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
// Token: 0x06001D92 RID: 7570 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001D92")]
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
protected SynchronizationLockException(SerializationInfo info, StreamingContext context)
{
}
}
}