30 lines
974 B
C#
30 lines
974 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: 0x02000332 RID: 818
|
|
[Token(Token = "0x2000332")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public sealed class ThreadAbortException : SystemException
|
|
{
|
|
// Token: 0x06001DDD RID: 7645 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6001DDD")]
|
|
[Address(RVA = "0x1DA7020", Offset = "0x1DA5E20", VA = "0x181DA7020")]
|
|
private ThreadAbortException()
|
|
{
|
|
}
|
|
|
|
// Token: 0x06001DDE RID: 7646 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6001DDE")]
|
|
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
|
|
internal ThreadAbortException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|