C# Класс Microsoft.Practices.Prism.Modularity.ModuleTypeLoadingException

Exception thrown by IModuleManager implementations whenever a module fails to retrieve.
Наследование: Microsoft.Practices.Prism.Modularity.ModularityException
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Описание методов

ModuleTypeLoadingException() публичный Метод

Initializes a new instance.
public ModuleTypeLoadingException ( ) : Microsoft.Practices.Prism.Properties
Результат Microsoft.Practices.Prism.Properties

ModuleTypeLoadingException() публичный Метод

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.
Результат Microsoft.Practices.Prism.Properties

ModuleTypeLoadingException() публичный Метод

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.
Результат Microsoft.Practices.Prism.Properties

ModuleTypeLoadingException() публичный Метод

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.
Результат Microsoft.Practices.Prism.Properties

ModuleTypeLoadingException() публичный Метод

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.
Результат Microsoft.Practices.Prism.Properties