|
|
@@ -31,6 +31,7 @@
|
|
|
//
|
|
|
|
|
|
using System.Runtime.CompilerServices;
|
|
|
+using System.Runtime.Serialization;
|
|
|
|
|
|
namespace System.Threading
|
|
|
{
|
|
|
@@ -42,6 +43,10 @@ namespace System.Threading
|
|
|
HResult = unchecked ((int) 0x80131530);
|
|
|
}
|
|
|
|
|
|
+ private ThreadAbortException (SerializationInfo info, StreamingContext sc) : base (info, sc)
|
|
|
+ {
|
|
|
+ }
|
|
|
+
|
|
|
public object ExceptionState {
|
|
|
get {
|
|
|
return Thread.CurrentThread.abort_state;
|