Click or drag to resize
ActivatorCreateInstance Method (AppDomain, String, String)
Creates an instance of the type whose name is specified in the specified remote domain, using the named assembly and default constructor.

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public static ObjectHandle CreateInstance(
	AppDomain domain,
	string assemblyName,
	string typeName
)

Parameters

domain
Type: SystemAppDomain
The remote domain where the type named typeName is created.
assemblyName
Type: SystemString
The name of the assembly where the type named typeName is sought. If assemblyName is null, the executing assembly is searched.
typeName
Type: SystemString
The name of the preferred type.

Return Value

Type: ObjectHandle
A handle that must be unwrapped to access the newly created instance.
Exceptions
ExceptionCondition
ArgumentNullExceptiontypeName or domain is null.
MissingMethodExceptionNo matching public constructor was found.
TypeLoadExceptiontypename was not found in assemblyName.
FileNotFoundExceptionassemblyName was not found.
MethodAccessExceptionThe caller does not have permission to call this constructor.
MemberAccessExceptionCannot create an instance of an abstract type. -or-This member was invoked with a late-binding mechanism.
TargetInvocationExceptionThe constructor, which was invoked through reflection, threw an exception.
InvalidComObjectExceptionThe COM type was not obtained through GetTypeFromProgID or GetTypeFromCLSID.
NotSupportedExceptionCreation of TypedReference, ArgIterator, Void, and RuntimeArgumentHandle types, or arrays of those types, is not supported.
BadImageFormatExceptionassemblyName is not a valid assembly. -or-The common language runtime (CLR) version 2.0 or later is currently loaded, and assemblyName was compiled for a version of the CLR that is later than the currently loaded version. Note that the .NET Framework versions 2.0, 3.0, and 3.5 all use CLR version 2.0.
FileLoadExceptionAn assembly or module was loaded twice with two different evidences.
See Also