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

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

Méthodes publiques

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

Initializes a new instance.

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

Initializes a new instance of the ModuleInitializeException class.

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

Initializes a new instance of the ModuleInitializeException class.

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

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

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

Initializes the exception with a particular module and error message.

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

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

Method Details

ModuleInitializeException() public méthode

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

ModuleInitializeException() public méthode

Initializes a new instance of the ModuleInitializeException class.
public ModuleInitializeException ( string message ) : Microsoft.Practices.Prism.Properties
message string The exception message.
Résultat Microsoft.Practices.Prism.Properties

ModuleInitializeException() public méthode

Initializes a new instance of the ModuleInitializeException class.
public ModuleInitializeException ( string message, Exception innerException ) : Microsoft.Practices.Prism.Properties
message string The exception message.
innerException System.Exception The inner exception.
Résultat Microsoft.Practices.Prism.Properties

ModuleInitializeException() public méthode

Initializes the exception with a particular module, error message and inner exception that happened.
public ModuleInitializeException ( 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

ModuleInitializeException() public méthode

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

ModuleInitializeException() public méthode

Initializes the exception with a particular module, error message and inner exception that happened.
public ModuleInitializeException ( string moduleName, string moduleAssembly, string message, Exception innerException ) : Microsoft.Practices.Prism.Properties
moduleName string The name of the module.
moduleAssembly string The assembly where the module is located.
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