scripts
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
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>
|
||||
/// <filterpriority>2</filterpriority>
|
||||
// Token: 0x0200061F RID: 1567
|
||||
[ComVisible(true)]
|
||||
[Serializable]
|
||||
public sealed class ThreadAbortException : SystemException
|
||||
{
|
||||
// Token: 0x060039B2 RID: 14770 RVA: 0x000C62A0 File Offset: 0x000C44A0
|
||||
private ThreadAbortException()
|
||||
: base("Thread was being aborted")
|
||||
{
|
||||
base.HResult = -2146233040;
|
||||
}
|
||||
|
||||
// Token: 0x060039B3 RID: 14771 RVA: 0x000C62B8 File Offset: 0x000C44B8
|
||||
private ThreadAbortException(SerializationInfo info, StreamingContext sc)
|
||||
: base(info, sc)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user