This topic has not yet been rated - Rate this topic

Microsoft.Practices.Prism.Modularity Namespace

  Class Description
Public class AssemblyResolver
Handles AppDomain's AssemblyResolve event to be able to load assemblies dynamically in the LoadFrom context, but be able to reference the type from assemblies loaded in the Load context.
Public class ConfigurationModuleCatalog
A catalog built from a configuration file.
Public class ConfigurationStore
Defines a store for the module metadata.
Public class CyclicDependencyFoundException
Represents the exception that is thrown when there is a circular dependency between modules during the module loading process.
Public class DirectoryModuleCatalog
Represets a catalog created from a directory on disk.
Public class DuplicateModuleException
Exception thrown when a module is declared twice in the same catalog.
Public class FileModuleTypeLoader
Loads modules from an arbitrary location on the filesystem. This typeloader is only called if ModuleInfo classes have a Ref parameter that starts with "file://". This class is only used on the Desktop version of the Composite Application Library.
Public class LoadModuleCompletedEventArgs
Provides completion information after a module is loaded, or fails to load.
Public class ModularityException
Base class for exceptions that are thrown because of a problem with modules.
Public class ModuleAttribute
Indicates that the class should be considered a named module using the provided module name.
Public class ModuleCatalog
The ModuleCatalog holds information about the modules that can be used by the application. Each module is described in a ModuleInfo class, that records the name, type and location of the module. It also verifies that the ModuleCatalog is internally valid. That means that it does not have: Circular dependenciesMissing dependencies Invalid dependencies, such as a Module that's loaded at startup that depends on a module that might need to be retrieved. The ModuleCatalog also serves as a baseclass for more specialized Catalogs .
Public class ModuleConfigurationElement
A configuration element to declare module metadata.
Public class ModuleConfigurationElementCollection
A collection of ModuleConfigurationElement.
Public class ModuleDependencyAttribute
Specifies that the current module has a dependency on another module. This attribute should be used on classes that implement IModule.
Public class ModuleDependencyCollection
Public class ModuleDependencyConfigurationElement
A ConfigurationElement for module dependencies.
Public class ModuleDependencySolver
Used by ModuleInitializer to get the load sequence for the modules to load according to their dependencies.
Public class ModuleDownloadProgressChangedEventArgs
Provides progress information as a module downloads.
Public class ModuleInfo
Defines the metadata that describes a module.
Public class ModuleInfoGroup
Represents a group of ModuleInfo instances that are usually deployed together. ModuleInfoGroups are also used by the ModuleCatalog to prevent common deployment problems such as having a module that's required at startup that depends on modules that will only be downloaded on demand. The group also forwards Ref and InitializationMode values to the ModuleInfos that it contains.
Public class ModuleInfoGroupExtensions
Defines extension methods for the ModuleInfoGroup class.
Public class ModuleInitializeException
Exception thrown by IModuleInitializer implementations whenever a module fails to load.
Public class ModuleInitializer
Implements the IModuleInitializer interface. Handles loading of a module based on a type.
Public class ModuleManager
Component responsible for coordinating the modules' type loading and module initialization process.
Public class ModuleNotFoundException
Exception thrown when a requested ModuleInfo is not found.
Public class ModulesConfigurationSection
A ConfigurationSection for module configuration.
Public class ModuleTypeLoaderNotFoundException
Exception that's thrown when there is no IModuleTypeLoader registered in ModuleTypeLoaders that can handle this particular type of module.
Public class ModuleTypeLoadingException
Exception thrown by IModuleManager implementations whenever a module fails to retrieve.
  Interface Description
Public interface IAssemblyResolver
Interface for classes that are responsible for resolving and loading assembly files.
Public interface IConfigurationStore
Defines a store for the module metadata.
Public interface IModule
Defines the contract for the modules deployed in the application.
Public interface IModuleCatalog
This is the expected catalog definition for the ModuleManager. The ModuleCatalog holds information about the modules that can be used by the application. Each module is described in a ModuleInfo class, that records the name, type and location of the module.
Public interface IModuleCatalogItem
Marker interface that allows both ModuleInfoGroups and ModuleInfos to be added to the IModuleCatalog from code and XAML.
Public interface IModuleInitializer
Declares a service which initializes the modules into the application.
Public interface IModuleManager
Defines the interface for the service that will retrieve and initialize the application's modules.
Public interface IModuleTypeLoader
Defines the interface for moduleTypeLoaders
  Enumeration Description
Public enumeration InitializationMode
Specifies on which stage the Module group will be initialized.
Public enumeration ModuleState
Defines the states a ModuleInfo can be in, with regards to the module loading and initialization process.
Did you find this helpful?
(1500 characters remaining)