Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

30 lines
972 B
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Threading
{
/// <summary>The exception that is thrown when a call is made to the <see cref="M:System.Threading.Thread.Abort(System.Object)" /> method. This class cannot be inherited.</summary>
// Token: 0x0200034C RID: 844
[Token(Token = "0x200034C")]
[ComVisible(true)]
[Serializable]
public sealed class ThreadAbortException : SystemException
{
// Token: 0x06001FDF RID: 8159 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001FDF")]
[Address(RVA = "0xB520C0", Offset = "0xB510C0", VA = "0x180B520C0")]
private ThreadAbortException()
{
}
// Token: 0x06001FE0 RID: 8160 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001FE0")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
internal ThreadAbortException(SerializationInfo info, StreamingContext context)
{
}
}
}