Microsoft.Practices.Composite.Modularity Namespace

Classes

  Class Description
Ff654406.pubclass(en-us,PandP.10).gif 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.
Ff654406.pubclass(en-us,PandP.10).gif ConfigurationModuleCatalog
A catalog built from a configuration file.
Ff654406.pubclass(en-us,PandP.10).gif ConfigurationStore
Defines a store for the module metadata.
Ff654406.pubclass(en-us,PandP.10).gif CyclicDependencyFoundException
Represents the exception that is thrown when there is a circular dependency between modules during the module loading process.
Ff654406.pubclass(en-us,PandP.10).gif DirectoryModuleCatalog
Represets a catalog created from a directory on disk.
Ff654406.pubclass(en-us,PandP.10).gif DuplicateModuleException
Exception thrown when a module is declared twice in the same catalog.
Ff654406.pubclass(en-us,PandP.10).gif 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.
Ff654406.pubclass(en-us,PandP.10).gif ModularityException
Base class for exceptions that are thrown because of a problem with modules.
Ff654406.pubclass(en-us,PandP.10).gif ModuleAttribute
Indicates that the class should be considered a named module using the provided module name.
Ff654406.pubclass(en-us,PandP.10).gif 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 dependencies Missing 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 .
Ff654406.pubclass(en-us,PandP.10).gif ModuleConfigurationElement
A configuration element to declare module metadata.
Ff654406.pubclass(en-us,PandP.10).gif ModuleConfigurationElementCollection
A collection of ModuleConfigurationElement.
Ff654406.pubclass(en-us,PandP.10).gif ModuleDependencyAttribute
Specifies that the current module has a dependency on another module. This attribute should be used on classes that implement IModule.
Ff654406.pubclass(en-us,PandP.10).gif ModuleDependencyCollection
Ff654406.pubclass(en-us,PandP.10).gif ModuleDependencyConfigurationElement
A ConfigurationElement for module dependencies.
Ff654406.pubclass(en-us,PandP.10).gif ModuleDependencySolver
Used by ModuleInitializer to get the load sequence for the modules to load according to their dependencies.
Ff654406.pubclass(en-us,PandP.10).gif ModuleInfo
Defines the metadata that describes a module.
Ff654406.pubclass(en-us,PandP.10).gif 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.
Ff654406.pubclass(en-us,PandP.10).gif ModuleInfoGroupExtensions
Defines extension methods for the ModuleInfoGroup class.
Ff654406.pubclass(en-us,PandP.10).gif ModuleInitializeException
Exception thrown by IModuleInitializer implementations whenever a module fails to load.
Ff654406.pubclass(en-us,PandP.10).gif ModuleInitializer
Implements the IModuleInitializer interface. Handles loading of a module based on a type.
Ff654406.pubclass(en-us,PandP.10).gif ModuleManager
Component responsible for coordinating the modules' type loading and module initialization process.
Ff654406.pubclass(en-us,PandP.10).gif ModuleNotFoundException
Exception thrown when a requested OnDemandIModule was not found.
Ff654406.pubclass(en-us,PandP.10).gif ModulesConfigurationSection
A ConfigurationSection for module configuration.
Ff654406.pubclass(en-us,PandP.10).gif ModuleTypeLoaderNotFoundException
Exception that's thrown when there is no IModuleTypeLoader registered in ModuleTypeLoaders that can handle this particular type of module.
Ff654406.pubclass(en-us,PandP.10).gif ModuleTypeLoadingException
Exception thrown by IModuleManager implementations whenever a module fails to retrieve.

Interfaces

  Interface Description
Ff654406.pubinterface(en-us,PandP.10).gif IAssemblyResolver
Interface for classes that are responsible for resolving and loading assembly files.
Ff654406.pubinterface(en-us,PandP.10).gif IConfigurationStore
Defines a store for the module metadata.
Ff654406.pubinterface(en-us,PandP.10).gif IModule
Defines the contract for the modules deployed in the application.
Ff654406.pubinterface(en-us,PandP.10).gif 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.
Ff654406.pubinterface(en-us,PandP.10).gif IModuleCatalogItem
Marker interface that allows both ModuleInfoGroups and ModuleInfos to be added to the IModuleCatalog from code and XAML.
Ff654406.pubinterface(en-us,PandP.10).gif IModuleInitializer
Declares a service which initializes the modules into the application.
Ff654406.pubinterface(en-us,PandP.10).gif IModuleManager
Defines the interface for the service that will retrieve and initialize the application's modules.
Ff654406.pubinterface(en-us,PandP.10).gif IModuleTypeLoader
Defines the interface for moduleTypeLoaders

Delegates

  Delegate Description
Ff654406.pubdelegate(en-us,PandP.10).gif ModuleTypeLoadedCallback
Callback to be called when module's type is loaded.

Enumerations

  Enumeration Description
Ff654406.pubenumeration(en-us,PandP.10).gif InitializationMode
Specifies on which stage the Module group will be initialized.
Ff654406.pubenumeration(en-us,PandP.10).gif ModuleState
Defines the states a ModuleInfo can be in, with regards to the module loading and initialization process.