C# Class Microsoft.Practices.Prism.Modularity.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.
Inheritance: IAssemblyResolver
Mostrar archivo Open project: xperiandri/PortablePrism Class Usage Examples

Public Methods

Method Description
LoadAssemblyFrom ( string assemblyFilePath ) : void

Registers the specified assembly and resolves the types in it when the AppDomain requests for it.

This method does not load the assembly immediately, but lazily until someone requests a Type declared in the assembly.

Private Methods

Method Description
GetFileUri ( string filePath ) : Uri

Method Details

LoadAssemblyFrom() public method

Registers the specified assembly and resolves the types in it when the AppDomain requests for it.
This method does not load the assembly immediately, but lazily until someone requests a Type declared in the assembly.
public LoadAssemblyFrom ( string assemblyFilePath ) : void
assemblyFilePath string The path to the assemly to load in the LoadFrom context.
return void