C# Класс 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.
Наследование: IAssemblyResolver
Показать файл Открыть проект Примеры использования класса

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

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

Приватные методы

Метод Описание
GetFileUri ( string filePath ) : Uri

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

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

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.
Результат void