mscorlib(4.0.0.0) API with additions
EntryPointNotFoundException.cs
3 
4 namespace System
5 {
8  [ComVisible(true)]
10  {
13  : base(Environment.GetResourceString("Arg_EntryPointNotFoundException"))
14  {
15  SetErrorCode(-2146233053);
16  }
17 
20  public EntryPointNotFoundException(string message)
21  : base(message)
22  {
23  SetErrorCode(-2146233053);
24  }
25 
29  public EntryPointNotFoundException(string message, Exception inner)
30  : base(message, inner)
31  {
32  SetErrorCode(-2146233053);
33  }
34 
39  : base(info, context)
40  {
41  }
42  }
43 }
EntryPointNotFoundException(SerializationInfo info, StreamingContext context)
Initializes a new instance of the T:System.EntryPointNotFoundException class with serialized data.
The exception that is thrown when an attempt to load a class fails due to the absence of an entry met...
Definition: __Canon.cs:3
Describes the source and destination of a given serialized stream, and provides an additional caller-...
Provides information about, and means to manipulate, the current environment and platform....
Definition: Environment.cs:21
EntryPointNotFoundException(string message)
Initializes a new instance of the T:System.EntryPointNotFoundException class with a specified error m...
The exception that is thrown when type-loading failures occur.
EntryPointNotFoundException()
Initializes a new instance of the T:System.EntryPointNotFoundException class.
Stores all the data needed to serialize or deserialize an object. This class cannot be inherited.
EntryPointNotFoundException(string message, Exception inner)
Initializes a new instance of the T:System.EntryPointNotFoundException class with a specified error m...
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.