C# 클래스 ICSharpCode.Core.AppDomainLaunchHelper

Because AddIn assemblies are loaded into the LoadFrom context, creating AppDomains in them that use an arbitrary ApplicationBase path does not work correctly. This class contains a static method that helps launching a static method on a type in a new AppDomain.
상속: System.MarshalByRefObject
파일 보기 프로젝트 열기: jumpinjackie/fdotoolbox 1 사용 예제들

공개 메소드들

메소드 설명
LaunchInAppDomain ( AppDomain domain, Type type, string methodName ) : object
LaunchMethod ( string assemblyFile, string typeName, string methodName, object arguments ) : object

메소드 상세

LaunchInAppDomain() 공개 정적인 메소드

public static LaunchInAppDomain ( AppDomain domain, Type type, string methodName ) : object
domain System.AppDomain
type System.Type
methodName string
리턴 object

LaunchMethod() 공개 메소드

public LaunchMethod ( string assemblyFile, string typeName, string methodName, object arguments ) : object
assemblyFile string
typeName string
methodName string
arguments object
리턴 object