C# Class IPFilter.Setup.CustomActions.LoadLibraryException

Error when loading a library using Win32Api.LoadLibraryEx.
Inheritance: System.Exception
Datei anzeigen Open project: DavidMoore/ipfilter

Public Methods

Method Description
LoadLibraryException ( ) : System

Initializes a new instance of the LoadLibraryException class.

LoadLibraryException ( Exception innerException, string message ) : System

Formats the specified error message and parameters using CultureInfo.CurrentCulture then initializes a new instance of the LoadLibraryException class with the resulting message.

LoadLibraryException ( string message ) : System

Initializes a new instance of the LoadLibraryException class with a specified error message.

LoadLibraryException ( string message, Exception innerException ) : System

Initializes a new instance of the LoadLibraryException class with a specified error message and a reference to the inner exception that is the cause of this exception.

LoadLibraryException ( string file, int lastWin32Error ) : System

Initializes a new instance of the LoadLibraryException class.

Protected Methods

Method Description
LoadLibraryException ( SerializationInfo info, StreamingContext context ) : System

Initializes a new instance of the LoadLibraryException class with serialized data.

Method Details

LoadLibraryException() public method

Initializes a new instance of the LoadLibraryException class.
public LoadLibraryException ( ) : System
return System

LoadLibraryException() public method

Formats the specified error message and parameters using CultureInfo.CurrentCulture then initializes a new instance of the LoadLibraryException class with the resulting message.
public LoadLibraryException ( Exception innerException, string message ) : System
innerException System.Exception The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.
message string The formattable error message to pass to
return System

LoadLibraryException() protected method

Initializes a new instance of the LoadLibraryException class with serialized data.
The parameter is null. The class name is null or is zero (0).
protected LoadLibraryException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo The that holds the serialized object data about the exception being thrown.
context System.Runtime.Serialization.StreamingContext The that contains contextual information about the source or destination.
return System

LoadLibraryException() public method

Initializes a new instance of the LoadLibraryException class with a specified error message.
public LoadLibraryException ( string message ) : System
message string The message that describes the error.
return System

LoadLibraryException() public method

Initializes a new instance of the LoadLibraryException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public LoadLibraryException ( string message, Exception innerException ) : System
message string The error message that explains the reason for the exception.
innerException System.Exception The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.
return System

LoadLibraryException() public method

Initializes a new instance of the LoadLibraryException class.
public LoadLibraryException ( string file, int lastWin32Error ) : System
file string The filename of the module being loaded.
lastWin32Error int The Win32 error code.
return System