Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/Threading/ThreadInterruptedException.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

34 lines
1.6 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 <see cref="T:System.Threading.Thread" /> is interrupted while it is in a waiting state.</summary>
// Token: 0x0200034D RID: 845
[Token(Token = "0x200034D")]
[ComVisible(true)]
[Serializable]
public class ThreadInterruptedException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.ThreadInterruptedException" /> class with default properties.</summary>
// Token: 0x06001FE1 RID: 8161 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001FE1")]
[Address(RVA = "0xB52490", Offset = "0xB51490", VA = "0x180B52490")]
public ThreadInterruptedException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.ThreadInterruptedException" /> 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: 0x06001FE2 RID: 8162 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001FE2")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
protected ThreadInterruptedException(SerializationInfo info, StreamingContext context)
{
}
}
}