C# 클래스 AppDomainToolkit.AssemblyTarget

상속: IAssemblyTarget
파일 보기 프로젝트 열기: jduv/AppDomainToolkit 1 사용 예제들

공개 메소드들

메소드 설명
FromAssembly ( Assembly assembly ) : IAssemblyTarget

Creates a new AssemblyTarget from the target assembly.

FromDynamic ( string fullName ) : IAssemblyTarget

Creates a new assembly target for the given dynamic assembly.

FromPath ( Uri codebase, string location = null, string fullname = null ) : IAssemblyTarget

Creates a new assembly target for the given location. The only required parameter here is the codebase.

비공개 메소드들

메소드 설명
AssemblyTarget ( ) : System

Prevents a default instance of the AssemblyTarget class from being created.

메소드 상세

FromAssembly() 공개 정적인 메소드

Creates a new AssemblyTarget from the target assembly.
public static FromAssembly ( Assembly assembly ) : IAssemblyTarget
assembly System.Reflection.Assembly /// The assembly to create the target for. ///
리턴 IAssemblyTarget

FromDynamic() 공개 정적인 메소드

Creates a new assembly target for the given dynamic assembly.
public static FromDynamic ( string fullName ) : IAssemblyTarget
fullName string /// The full name of the assembly. ///
리턴 IAssemblyTarget

FromPath() 공개 정적인 메소드

Creates a new assembly target for the given location. The only required parameter here is the codebase.
public static FromPath ( Uri codebase, string location = null, string fullname = null ) : IAssemblyTarget
codebase System.Uri /// The URI to the code base. ///
location string /// The location. Must be a valid path and an existing file if supplied--defaults to null. ///
fullname string /// The full name of the assembly. Defaults to null. ///
리턴 IAssemblyTarget