C# Class Microsoft.Practices.Prism.Modularity.ModuleTypeLoadingException

Exception thrown by IModuleManager implementations whenever a module fails to retrieve.
Inheritance: Microsoft.Practices.Prism.Modularity.ModularityException
Afficher le fichier Open project: xperiandri/PortablePrism Class Usage Examples

Méthodes publiques

Méthode Description
ModuleTypeLoadingException ( ) : Microsoft.Practices.Prism.Properties

Initializes a new instance.

ModuleTypeLoadingException ( string message ) : Microsoft.Practices.Prism.Properties

Initializes a new instance with a specified error message.

ModuleTypeLoadingException ( string message, Exception exception ) : Microsoft.Practices.Prism.Properties

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

ModuleTypeLoadingException ( string moduleName, string message ) : Microsoft.Practices.Prism.Properties

Initializes the exception with a particular module and error message.

ModuleTypeLoadingException ( string moduleName, string message, Exception innerException ) : Microsoft.Practices.Prism.Properties

Initializes the exception with a particular module, error message and inner exception that happened.

Method Details

ModuleTypeLoadingException() public méthode

Initializes a new instance.
public ModuleTypeLoadingException ( ) : Microsoft.Practices.Prism.Properties
Résultat Microsoft.Practices.Prism.Properties

ModuleTypeLoadingException() public méthode

Initializes a new instance with a specified error message.
public ModuleTypeLoadingException ( string message ) : Microsoft.Practices.Prism.Properties
message string The message that describes the error.
Résultat Microsoft.Practices.Prism.Properties

ModuleTypeLoadingException() public méthode

Initializes a new instance with a specified error message and a reference to the inner exception that is the cause of this exception.
public ModuleTypeLoadingException ( string message, Exception exception ) : Microsoft.Practices.Prism.Properties
message string The error message that explains the reason for the exception.
exception System.Exception The exception that is the cause of the current exception, /// or a reference if no inner exception is specified.
Résultat Microsoft.Practices.Prism.Properties

ModuleTypeLoadingException() public méthode

Initializes the exception with a particular module and error message.
public ModuleTypeLoadingException ( string moduleName, string message ) : Microsoft.Practices.Prism.Properties
moduleName string The name of the module.
message string The error message that explains the reason for the exception.
Résultat Microsoft.Practices.Prism.Properties

ModuleTypeLoadingException() public méthode

Initializes the exception with a particular module, error message and inner exception that happened.
public ModuleTypeLoadingException ( string moduleName, string message, Exception innerException ) : Microsoft.Practices.Prism.Properties
moduleName string The name of the module.
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 reference if no inner exception is specified.
Résultat Microsoft.Practices.Prism.Properties