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
파일 보기 프로젝트 열기: xperiandri/PortablePrism 1 사용 예제들

공개 메소드들

메소드 설명
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