mscorlib(4.0.0.0) API with additions
ThreadInterruptedException.cs
1
using
System
.
Runtime
.
InteropServices
;
2
using
System
.
Runtime
.
Serialization
;
3
4
namespace
System.Threading
5
{
7
[
Serializable
]
8
[ComVisible(
true
)]
9
public
class
ThreadInterruptedException
:
SystemException
10
{
12
public
ThreadInterruptedException
()
13
: base(
Exception
.GetMessageFromNativeResources(ExceptionMessageKind.ThreadInterrupted))
14
{
15
SetErrorCode(-2146233063);
16
}
17
20
public
ThreadInterruptedException
(
string
message)
21
: base(message)
22
{
23
SetErrorCode(-2146233063);
24
}
25
29
public
ThreadInterruptedException
(
string
message,
Exception
innerException)
30
: base(message, innerException)
31
{
32
SetErrorCode(-2146233063);
33
}
34
38
protected
ThreadInterruptedException
(
SerializationInfo
info,
StreamingContext
context)
39
: base(info, context)
40
{
41
}
42
}
43
}
System.Threading.ThreadInterruptedException.ThreadInterruptedException
ThreadInterruptedException(string message, Exception innerException)
Initializes a new instance of the T:System.Threading.ThreadInterruptedException class with a specifie...
Definition:
ThreadInterruptedException.cs:29
System.SystemException
Serves as the base class for system exceptions namespace.
Definition:
SystemException.cs:9
System.Runtime.InteropServices
Definition:
_Activator.cs:1
System.Runtime
Definition:
AssemblyTargetedPatchBandAttribute.cs:1
System
Definition:
__Canon.cs:3
System.Runtime.Serialization.StreamingContext
Describes the source and destination of a given serialized stream, and provides an additional caller-...
Definition:
StreamingContext.cs:9
System.Threading.ThreadInterruptedException.ThreadInterruptedException
ThreadInterruptedException(string message)
Initializes a new instance of the T:System.Threading.ThreadInterruptedException class with a specifie...
Definition:
ThreadInterruptedException.cs:20
System.Threading.ThreadInterruptedException.ThreadInterruptedException
ThreadInterruptedException(SerializationInfo info, StreamingContext context)
Initializes a new instance of the T:System.Threading.ThreadInterruptedException class with serialized...
Definition:
ThreadInterruptedException.cs:38
System.Threading.ThreadInterruptedException
The exception that is thrown when a T:System.Threading.Thread is interrupted while it is in a waiting...
Definition:
ThreadInterruptedException.cs:9
System.Runtime.Serialization
Definition:
DeserializationEventHandler.cs:1
System.Runtime.Serialization.SerializationInfo
Stores all the data needed to serialize or deserialize an object. This class cannot be inherited.
Definition:
SerializationInfo.cs:12
System.Exception
Represents errors that occur during application execution.To browse the .NET Framework source code fo...
Definition:
Exception.cs:22
System.Reflection.TypeAttributes.Serializable
Specifies that the class can be serialized.
System.Threading
Definition:
_IOCompletionCallback.cs:3
System.Threading.ThreadInterruptedException.ThreadInterruptedException
ThreadInterruptedException()
Initializes a new instance of the T:System.Threading.ThreadInterruptedException class with default pr...
Definition:
ThreadInterruptedException.cs:12
All cs
System.Threading
ThreadInterruptedException.cs
Generated by
1.8.15