C# 클래스 Uiml.Utils.Reflection.AssemblyLoader

파일 보기 프로젝트 열기: jozilla/Uiml.net

공개 메소드들

메소드 설명
LoadAny ( string query ) : Assembly

Tries to load an assembly in any possible way

LoadFromGacOrAppDir ( string partialName ) : Assembly

Loads an assembly from the Global Assembly Cache (GAC) or from the current application directory.

LoadFromPath ( string pathToLib ) : Assembly

Loads an assembly from a specified file.

비공개 메소드들

메소드 설명
LoadAny ( AssemblyQuery q ) : Assembly
LoadFromGacOrAppDir ( AssemblyQuery q ) : Assembly
LoadFromPath ( AssemblyQuery q ) : Assembly

메소드 상세

LoadAny() 공개 정적인 메소드

Tries to load an assembly in any possible way
public static LoadAny ( string query ) : Assembly
query string the query to look for (can be a partial name /// or a path to a file)
리턴 System.Reflection.Assembly

LoadFromGacOrAppDir() 공개 정적인 메소드

Loads an assembly from the Global Assembly Cache (GAC) or from the current application directory.
public static LoadFromGacOrAppDir ( string partialName ) : Assembly
partialName string the assembly's partial name /// (e.g. "System.Drawing")
리턴 System.Reflection.Assembly

LoadFromPath() 공개 정적인 메소드

Loads an assembly from a specified file.
public static LoadFromPath ( string pathToLib ) : Assembly
pathToLib string the path to the assembly
리턴 System.Reflection.Assembly