mscorlib(4.0.0.0) API with additions
TargetException.cs
3 
4 namespace System.Reflection
5 {
8  [ComVisible(true)]
10  {
12  public TargetException()
13  {
14  SetErrorCode(-2146232829);
15  }
16 
19  public TargetException(string message)
20  : base(message)
21  {
22  SetErrorCode(-2146232829);
23  }
24 
28  public TargetException(string message, Exception inner)
29  : base(message, inner)
30  {
31  SetErrorCode(-2146232829);
32  }
33 
38  : base(info, context)
39  {
40  }
41  }
42 }
Definition: __Canon.cs:3
Serves as the base class for application-defined exceptions.
TargetException(string message)
Initializes a new instance of the T:System.Reflection.TargetException class with the given message an...
Describes the source and destination of a given serialized stream, and provides an additional caller-...
TargetException(string message, Exception inner)
Initializes a new instance of the T:System.Reflection.TargetException class with a specified error me...
Represents the exception that is thrown when an attempt is made to invoke an invalid target.
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
Specifies that the class can be serialized.
TargetException()
Initializes a new instance of the T:System.Reflection.TargetException class with an empty message and...
TargetException(SerializationInfo info, StreamingContext context)
Initializes a new instance of the T:System.Reflection.TargetException class with the specified serial...