mscorlib(4.0.0.0) API with additions
ThreadStateException.cs
3 
4 namespace System.Threading
5 {
8  [ComVisible(true)]
10  {
13  : base(Environment.GetResourceString("Arg_ThreadStateException"))
14  {
15  SetErrorCode(-2146233056);
16  }
17 
20  public ThreadStateException(string message)
21  : base(message)
22  {
23  SetErrorCode(-2146233056);
24  }
25 
29  public ThreadStateException(string message, Exception innerException)
30  : base(message, innerException)
31  {
32  SetErrorCode(-2146233056);
33  }
34 
39  : base(info, context)
40  {
41  }
42  }
43 }
ThreadStateException()
Initializes a new instance of the T:System.Threading.ThreadStateException class with default properti...
Serves as the base class for system exceptions namespace.
The exception that is thrown when a T:System.Threading.Thread is in an invalid P:System....
Definition: __Canon.cs:3
Describes the source and destination of a given serialized stream, and provides an additional caller-...
ThreadStateException(string message)
Initializes a new instance of the T:System.Threading.ThreadStateException class with a specified erro...
Provides information about, and means to manipulate, the current environment and platform....
Definition: Environment.cs:21
ThreadStateException(SerializationInfo info, StreamingContext context)
Initializes a new instance of the T:System.Threading.ThreadStateException class with serialized data.
Stores all the data needed to serialize or deserialize an object. This class cannot be inherited.
Represents errors that occur during application execution.To browse the .NET Framework source code fo...
Definition: Exception.cs:22
ThreadStateException(string message, Exception innerException)
Initializes a new instance of the T:System.Threading.ThreadStateException class with a specified erro...
Specifies that the class can be serialized.